How do I change the array of 200x2x100 to 100x2x200?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
JIWON LEE
el 28 de Abr. de 2021
Editada: Subhadeep Koley
el 28 de Abr. de 2021
In Python, I use "np.transpose" code, but I don't know how to use it on Matlab..
0 comentarios
Respuesta aceptada
Subhadeep Koley
el 28 de Abr. de 2021
Editada: Subhadeep Koley
el 28 de Abr. de 2021
% Generate demo data
data = rand(200, 2, 100);
% Permute the data
newData = permute(data, [3 2 1]);
size(data)
size(newData)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Call Python from MATLAB 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!