Borrar filtros
Borrar filtros

How can I make elements in a matrix NAN where they don't match that of another matrix?

1 visualización (últimos 30 días)
suppose I have a matrix
A = [1,2,NaN
4,5,6]
and
B = [12,3,4
4,5,67]
I want
C = [12,3,NaN
4,5,67]
How can I go about doing this?

Respuestas (1)

Walter Roberson
Walter Roberson el 2 de Nov. de 2015
C = B;
C(isnan(A)) = NaN;

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by