convert a matrix to column vector
Afficher commentaires plus anciens
I woule like to convert a matrix [31,6000] to a cloumn vector
31 rows and 6000 column
to one column vector
please advice
2 commentaires
Budoor Salem
le 21 Fév 2021
Modifié(e) : Budoor Salem
le 21 Fév 2021
Walter Roberson
le 21 Fév 2021
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);
Réponse acceptée
Plus de réponses (1)
Catégories
En savoir plus sur Data Types 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!