how can I convert a matrix to an array
350 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a matrix say, A=
1 8 4 6
2 1 7 5
8 3 3 9 .
I need the elements in an array called B like B=[1 8 4 6 2 1 7 5 8 3 3 9].
Please help me.
1 commentaire
Réponse acceptée
Thorsten
le 16 Jan 2013
Modifié(e) : Thorsten
le 16 Jan 2013
B = A';
B = B(:)';
1 commentaire
Berk Kucukoglu
le 18 Fév 2022
This worked for me, therefore I upvoted. Thank you.
However, I don't understand why it works. And is it always guaranteed to work between updates? Like, is this a bug or a feature? :)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!