How to select rows from an array?
Ältere Kommentare anzeigen
I have matrix of A
. I need to select the 2nd, 4th and 6th row. How can I write that in MATLAB code?
Antworten (3)
ANANTA BIJOY BHADRA
am 12 Okt. 2022
1 Stimme
1 Kommentar
Casey
am 8 Mai 2024
Thank you for posting, this was helpful.
Torsten
am 12 Okt. 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,:);
See this page of the doc to learn about array indexing.
Hint: A(__,:) where the blank is a vector of row indicies.
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!