Transform rows to columns and add them at the end
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Alexander Bächi
le 14 Avr 2022
Commenté : Mathieu NOE
le 14 Avr 2022
Hello
I have a matrix like this:
1 2 3
4 5 6
7 8 9
Now, I want to transform it to this:
1
2
3
4
5
6
7
8
9
Note, the real values are not in row, so sort is no option.
Thanks in advance.
0 commentaires
Réponse acceptée
Mathieu NOE
le 14 Avr 2022
hi
simply this :
>> a = [1 2 3 ;
4 5 6;
7 8 9];
>> a(:)
ans =
1
4
7
2
5
8
3
6
9
2 commentaires
Mathieu NOE
le 14 Avr 2022
oops
this is better :)
a = [1 2 3 ;
4 5 6;
7 8 9];
b = a';
b(:)
ans =
1
2
3
4
5
6
7
8
9
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!