How to Convert 3d matrix to row matrix???
3 vues (au cours des 30 derniers jours)
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???
0 commentaires
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
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!