I need to create a cell array initializing each element in it to 3*1 null matrix.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hrushikesh kyathari
el 13 de Jul. de 2019
Comentada: hrushikesh kyathari
el 14 de Jul. de 2019
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.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 13 de Jul. de 2019
Editada: Image Analyst
el 13 de Jul. de 2019
I don't know about null. How about nan?
for k = 1 : numel(F)
F(k) = {nan(3, 1)};
end
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!