How to Convert 3d matrix to row matrix???
Afficher commentaires plus anciens
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???
Réponse acceptée
Plus de réponses (1)
Vladimir Sovkov
le 8 Avr 2020
a=rand(2,2,2) % a sample 3D matrix a
b=a(:)' % is turned to the 1D row matrix b
1 commentaire
Mehul Jain
le 8 Avr 2020
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!