How to select rows from an array?

조회 수: 120 (최근 30일)
ANANTA BIJOY BHADRA
ANANTA BIJOY BHADRA 2022년 10월 12일
답변: ANANTA BIJOY BHADRA 2022년 10월 12일
I have matrix of A . I need to select the 2nd, 4th and 6th row. How can I write that in MATLAB code?

답변 (3개)

Torsten
Torsten 2022년 10월 12일
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,:);

Adam Danz
Adam Danz 2022년 10월 12일
편집: Adam Danz 2022년 10월 12일
See this page of the doc to learn about array indexing.
Hint: A(__,:) where the blank is a vector of row indicies.

ANANTA BIJOY BHADRA
ANANTA BIJOY BHADRA 2022년 10월 12일
I think I found out the way. It has to be something like this:
B=A([2, 4, 6], :)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by