在 MATLAB 中旋转 3D 矩阵

发布于 2024-09-29 13:40:10 字数 194 浏览 0 评论 0原文

我有一个维度为 6、2 和 10 的 3D 矩阵。我希望行维度与高度维度交换位置,即 10-2-6。 reshape 没有按照我想要的方式实现这一点。

这怎么能做到呢?我可以旋转矩阵吗?

I have a 3D matrix with the dimensions 6, 2, and 10. I want the row dimension to switch places with the height dimension, that is, 10-2-6. reshape doesn't achieve this the way I want.

How can this be done? Can I rotate the matrix?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掐死时间 2024-10-06 13:40:10

我认为您正在寻找permute。对于您的情况,permute(A,[3 2 1]);。以下是文档中对 permute 的描述:

B = permute(A,order) 重新排列
A 的维度,使得它们处于
向量指定的顺序
命令。 B 与 A 具有相同的值,但是
所需下标的顺序
访问任何特定元素是
按订单规定重新排列。全部
order 的元素必须是唯一的。order 的元素必须是唯一的。

它类似于转置二维矩阵。

I think you're looking for permute. For your case it's, permute(A,[3 2 1]);. Here's a description of permute from the documentation:

B = permute(A,order) rearranges the
dimensions of A so that they are in
the order specified by the vector
order. B has the same values of A but
the order of the subscripts needed to
access any particular element is
rearranged as specified by order. All
the elements of order must be unique.the elements of order must be unique.

It's similar to transposing a 2D matrix.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文