How to Convert 3d matrix to row matrix???
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mehul Jain
el 8 de Abr. de 2020
Comentada: Mehul Jain
el 9 de Abr. de 2020
I have a 3d matrix in the workspace variable named WT.dec{1,1}, I need it to be converted to single dimention row matrix. How can do this???
0 comentarios
Respuesta aceptada
Más respuestas (1)
Vladimir Sovkov
el 8 de Abr. de 2020
a=rand(2,2,2) % a sample 3D matrix a
b=a(:)' % is turned to the 1D row matrix b
Ver también
Categorías
Más información sobre Spreadsheets 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!