finding non-zero entries of a matrix

1 Ansicht (letzte 30 Tage)
Deepa Maheshvare
Deepa Maheshvare am 18 Feb. 2021
Kommentiert: dpb am 18 Feb. 2021
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.

Akzeptierte Antwort

dpb
dpb am 18 Feb. 2021
  2 Kommentare
Matt J
Matt J am 18 Feb. 2021
Bearbeitet: Matt J am 18 Feb. 2021
Or C=double(A|B) if you want the result in floating point.
dpb
dpb am 18 Feb. 2021
+1
Had just come back to add, Matt... :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by