如何在 MATLAB 中不使用 for 循环生成这个 3-D 矩阵?
我想生成一个 N×N×3 矩阵 A
,使得 A(:,:,i) = eye(n)*i
。如何在不使用 for 循环(即以矢量化方式)的情况下做到这一点?
I'd like to generate an N-by-N-by-3 matrix A
such that A(:,:,i) = eye(n)*i
. How can I do this without using for loops (i.e. in a vectorized fashion)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一种方法是使用函数 KRON 和 重塑:
One way to do this is to use the functions KRON and RESHAPE:
另一种选择是使用 BSXFUN,将单位矩阵乘以 1-
1,2,3
的 by-1×3 数组Another option is to use BSXFUN, multiplying the identity matrix with a 1-by-1-by-3 array of
1,2,3
如果您在引入 BSXFUN 之前拥有旧版本的 MATLAB,请考虑此选项(与 @Jonas):
If you have an older version of MATLAB before BSXFUN was introduced, consider this option (the same answer as the one by @Jonas):