I need to create a cell array initializing each element in it to 3*1 null matrix.

1 次查看(过去 30 天)
I need to create a cell array initializing each element in it to 3*1 null matrix. How to proceed?
F=cell(a,2*n); is my cell and a,n are integers.

采纳的回答

madhan ravi
madhan ravi 2019-7-13
Simpler without loop:
F(:) = {zeros(3,1)}

更多回答(1 个)

Image Analyst
Image Analyst 2019-7-13
编辑:Image Analyst 2019-7-13
I don't know about null. How about nan?
for k = 1 : numel(F)
F(k) = {nan(3, 1)};
end

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

产品


版本

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by