How to select column 2 in a matrix

27 views (last 30 days)
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

KSSV
KSSV on 27 Jan 2022
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)

Tags

Products

Community Treasure Hunt

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

Start Hunting!