How to copy rows of a matrix to convert it into single row??
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Maruti Patil
il 6 Apr 2016
Risposto: Star Strider
il 6 Apr 2016
Suppose I have got A=[1 2; 3 4; 5 6; 7 8]
Now I want output as B=[1 2 3 4 5 6 7 8]
How to do this?
Thanx
0 Commenti
Risposta accettata
Star Strider
il 6 Apr 2016
Use the reshape function:
A=[1 2; 3 4; 5 6; 7 8];
B = reshape(A', 1, [])
B =
1 2 3 4 5 6 7 8
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Numeric Types in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!