Creating cell with NaN
42 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Daneisha Blair
el 23 de Ag. de 2021
Comentada: Daneisha Blair
el 24 de Ag. de 2021
Hi,
I would like to re-create a NaN array like the attached image below. Meaning, the size of the array will be 1x187, but inside the array I rather each cell be a mx1. Example 2x1, 10x1, 3x1, 13x1, 4x1, etc.
Any help is appreciated.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/719389/image.png)
0 comentarios
Respuesta aceptada
the cyclist
el 24 de Ag. de 2021
I was not 100% clear on what you wanted. Is this output right?
% Input array
C = {["Mercury","Gemini", "Apollo"; ...
"Skylab", "Skylab B","ISS"], ...
["Mercury","Gemini";
"Skylab","Skylab B"]}
% Output array
out = cellfun(@(x) nan(size(x,1),1) ,C,'UniformOutput',false)
Más respuestas (0)
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!