Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
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?
  1 commentaire
Wanbin Song
Wanbin Song le 2 Nov 2015
Modifié(e) : Wanbin Song le 2 Nov 2015
What do you expect? How does the matrix C comes out? Please explain more

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 2 Nov 2015
C = B;
C(isnan(A)) = NaN;

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by