如何在 MATLAB 中创建元胞数组并将所有元素初始化为同一对象?
我有一个矩阵(称之为 X
),它被初始化为 zero(3)
。
我想更改代码,使 X
是一个大小为 (3,1)
的元胞数组,并将每个元素初始化为 zero(3)< /代码>。
我可以用循环来完成,但是有更好的方法吗?
X = cell(3,1);
for ii=1:numel(X)
X{ii} = zeros(3);
end
I have a matrix (call it X
) that is initialized to say zero(3)
.
I want to change the code so that X
is a cell array of size (say) (3,1)
and initialize each element to zero(3)
.
I can do it with a loop but is there a better way?
X = cell(3,1);
for ii=1:numel(X)
X{ii} = zeros(3);
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
deal()
来完成此操作。You can do this with
deal()
.另一种方法:
另一种:
An alternative way:
another one:
还有另一种方式:
该解决方案利用了这样一个事实:您可以分配给超出变量大小的索引。在这种情况下,Matlab 将自动扩展。
相似地:
And yet another way:
This solution uses the fact that you can assign to indices that lie beyond the variables size. Matlab will automatically expand in this case.
Similarly: