How to convert 32x32x2x20000 into 20000x1 cell array?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
KAI-YANG WANG
el 3 de Sept. de 2021
Respondida: Matt J
el 5 de Sept. de 2021
How to convert 32x32x2x20000 into 20000x1 cell array, I got a data from the output of a cnn network and i would llike to convert the 32x32x2x20000 into 20000x1 cell array and in each cell has the 32x32x2 data. Deos anyone can help, Thank you !
0 comentarios
Respuesta aceptada
per isakson
el 5 de Sept. de 2021
Editada: per isakson
el 5 de Sept. de 2021
A mat2cell example
%%
M = ones(32,32,2,6); % Sample data (20000 replaced by 6)
C = mat2cell( M, 32, 32, 2, ones(1,6) );
%%
C = squeeze( C );
C
0 comentarios
Más respuestas (2)
Ver también
Categorías
Más información sobre Data Type Conversion 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!