converting matrix to column
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
AA
le 24 Déc 2014
Réponse apportée : Image Analyst
le 24 Déc 2014
How can i convert a 4 columned matrix to 4 vectors?
0 commentaires
Réponse acceptée
Image Analyst
le 24 Déc 2014
col1 = array(:, 1);
col2 = array(:, 2);
col3 = array(:, 3);
col4 = array(:, 4);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!