How to pass from vector to matrix
Afficher commentaires plus anciens
I'd want the code that given the vector B
B=[ 1 2 8 9 0 7 1 9 8 7 2 4 5 0 8 3 3 7 6 1]
return the matrix
B=[1 2 8 9 0; 7 8 9 1 7; 2 4 5 0 8; 1 6 7 3 3]
or for example:
from A=[ 1 2 4 3 0 1 5 3 7 9]
to A=[1 2; 3 4; 0 1; 3 5; 7 9]
thanks
1 commentaire
Guillaume
le 24 Nov 2018
How is the number of rows or columns of the result determined from the vector?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!