conditional statements on matrices

2 ビュー (過去 30 日間)
puccapearl
puccapearl 2024 年 4 月 8 日
コメント済み: Voss 2024 年 4 月 8 日
Hi, I have two matrices like below:
I want to search when the 2nd column equals 0 on either matrix and make a new matrix that shows the 0 values along with its paired column 1 values. I also want to tag it to know from which matrix it came from.
Thank you! I am new to conditional statements.

採用された回答

Voss
Voss 2024 年 4 月 8 日
Where M1 and M2 are your matrices:
idx1 = M1(:,2) == 0;
idx2 = M2(:,2) == 0;
tags = repelem([1; 2],[nnz(idx1) nnz(idx2)]);
result = [[M1(idx1,:); M2(idx2,:)] tags]
  9 件のコメント
puccapearl
puccapearl 2024 年 4 月 8 日
oh my gosh! *face palm*
Thank you! I'm sorry for the run around!
Voss
Voss 2024 年 4 月 8 日
No problem! You're welcome!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSparse Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by