how to extract a certain row out of a matrix

2 ビュー (過去 30 日間)
farfar
farfar 2018 年 7 月 19 日
編集済み: jonas 2018 年 7 月 19 日
Hello
How can I extract a certain rows out of a matrix ? for example:
a=[2 2;2 2;2 2;1 1;0 1;0 1;0 1]
I want to extract row [0 1] out a matrix a and have a new matrix b :
b=[0 1;0 1;0 1]
Thank you

採用された回答

jonas
jonas 2018 年 7 月 19 日
編集済み: jonas 2018 年 7 月 19 日
ind=ismember(a,[0 1],'rows');
b=a(ind,:)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by