finding non-zero entries of a matrix

1 回表示 (過去 30 日間)
Deepa Maheshvare
Deepa Maheshvare 2021 年 2 月 18 日
コメント済み: dpb 2021 年 2 月 18 日
Hi All,
I've 2 matrices, A and B.
A = [1 0 2; 3 4 5; 0 0 0];
B = [0 0 0; 1 0 0; 1 1 1];
I want to generate a matrix C which assigns 1 to non-zero entries in both A and B.
C = [1 0 1; 1 1 1; 1 1 1]
For just A , I could do
C = zeros(3)
C(find(A~=0)) = 1
I'd like to ask for suggestion on how to assign 1 for all non-zero entries in both A and B.

採用された回答

dpb
dpb 2021 年 2 月 18 日
  2 件のコメント
Matt J
Matt J 2021 年 2 月 18 日
編集済み: Matt J 2021 年 2 月 18 日
Or C=double(A|B) if you want the result in floating point.
dpb
dpb 2021 年 2 月 18 日
+1
Had just come back to add, Matt... :)

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by