Mathematica 中 Flatten 的逆?
f[x_]:=Flatten[x] 的逆是什么,其中 x 是维度为变暗的数组?
What's the inverse of f[x_]:=Flatten[x] where x is Array with dimensions dims?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有内置函数,但结合使用
折叠
和分区
:There is no built-in function, but it's pretty easy with a combination of
Fold
andPartition
:您可能需要
Partition[]
或其亲属之一。You probably want
Partition[]
or one of its relatives.