converting matrix to column

4 Ansichten (letzte 30 Tage)
AA
AA am 24 Dez. 2014
Beantwortet: Image Analyst am 24 Dez. 2014
How can i convert a 4 columned matrix to 4 vectors?

Akzeptierte Antwort

Image Analyst
Image Analyst am 24 Dez. 2014
col1 = array(:, 1);
col2 = array(:, 2);
col3 = array(:, 3);
col4 = array(:, 4);

Weitere Antworten (0)

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by