How to select column 2 in a matrix
27 views (last 30 days)
Show older comments
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.
0 Comments
Accepted Answer
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)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!