フィルターのクリア

Maintain shape of logical index mask

4 ビュー (過去 30 日間)
Garima Sharma
Garima Sharma 2017 年 6 月 12 日
コメント済み: Garima Sharma 2017 年 6 月 13 日
I have a matrix A=[1,2,3;4,5,6]. From this, I want to remove (by row), z=[1,5], to return the matrix B=[2,3;4,6]. I'm trying to use logical indexing to do this, but that returns a vector instead of the matrix B.
if true
B=A(A~=z(:,1))
end

採用された回答

Andrei Bobrov
Andrei Bobrov 2017 年 6 月 12 日
編集済み: Andrei Bobrov 2017 年 6 月 12 日
Aout = A';
Aout = reshape(Aout(Aout ~= z(:)'),[],2)';
or
Aout = A';
Aout = reshape(Aout(~ismember(Aout,z)),[],2)';
  1 件のコメント
Garima Sharma
Garima Sharma 2017 年 6 月 13 日
Thanks, this works!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by