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

조회 수: 1 (최근 30일)
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개)

Walter Roberson
Walter Roberson 2015년 11월 2일
C = B;
C(isnan(A)) = NaN;

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by