converting matrix to column
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
AA
am 24 Dez. 2014
Beantwortet: Image Analyst
am 24 Dez. 2014
How can i convert a 4 columned matrix to 4 vectors?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 24 Dez. 2014
col1 = array(:, 1);
col2 = array(:, 2);
col3 = array(:, 3);
col4 = array(:, 4);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!