How to select column 2 in a matrix

I have a 4 by 5 matrix and I need to select column 2 and make it into a new matrix . Im pretty new to coding so i dont know many complex things in matlab.

 Accepted Answer

A = rand(4,5) ;
A2 = A(:,2) % extract second column
: this stands for all in this case. The command extract entire row of second column.

More Answers (0)

Categories

Products

Tags

Community Treasure Hunt

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

Start Hunting!