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

1 回表示 (過去 30 日間)
Robert
Robert 2015 年 11 月 2 日
回答済み: Walter Roberson 2015 年 11 月 2 日
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 件のコメント
Wanbin Song
Wanbin Song 2015 年 11 月 2 日
編集済み: Wanbin Song 2015 年 11 月 2 日
What do you expect? How does the matrix C comes out? Please explain more

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 11 月 2 日
C = B;
C(isnan(A)) = NaN;

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by