How to select rows from an array?
162 views (last 30 days)
Show older comments
I have matrix of A . I need to select the 2nd, 4th and 6th row. How can I write that in MATLAB code?
0 Comments
Answers (3)
Torsten
on 12 Oct 2022
B = [A(2,:);A(4,:);A(6,:)]
or if you want the rows one by one:
A2 = A(2,:);
A4 = A(4,:);
A6 = A(6,:);
0 Comments
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!