converting matrix to column

3 views (last 30 days)
AA
AA on 24 Dec 2014
Answered: Image Analyst on 24 Dec 2014
How can i convert a 4 columned matrix to 4 vectors?

Accepted Answer

Image Analyst
Image Analyst on 24 Dec 2014
col1 = array(:, 1);
col2 = array(:, 2);
col3 = array(:, 3);
col4 = array(:, 4);

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!