converting matrix to column
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can i convert a 4 columned matrix to 4 vectors?
0 Commenti
Risposta accettata
Image Analyst
il 24 Dic 2014
col1 = array(:, 1);
col2 = array(:, 2);
col3 = array(:, 3);
col4 = array(:, 4);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices 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!