finding non-zero entries of a matrix

2 visualizzazioni (ultimi 30 giorni)
Deepa Maheshvare
Deepa Maheshvare il 18 Feb 2021
Commentato: dpb il 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.

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange

Tag

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by