finding non-zero entries of a matrix

1 visualización (últimos 30 días)
Deepa Maheshvare
Deepa Maheshvare el 18 de Feb. de 2021
Comentada: dpb el 18 de Feb. de 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.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by