How to convert column to a cell's arrays?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dear all,
I want to know how I can convert columns of a 444*5 array (namely CF, attached to this question) to cell arrays; where the cell size is 1*444 (each of 444 rows contains a 1*5 double array).
Thank you
0 comentarios
Respuesta aceptada
VBBV
el 5 de Nov. de 2022
D = load('CF.mat')
D.CF
for k = 1:height(D.CF)
I{k,:} = D.CF(k,:);
end
I
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Types 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!