How to copy rows of a matrix to convert it into single row??
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Maruti Patil
le 6 Avr 2016
Réponse apportée : Star Strider
le 6 Avr 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 commentaires
Réponse acceptée
Star Strider
le 6 Avr 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Numeric Types 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!