Filter löschen
Filter löschen

Match NaN's in one Matrix to another

1 Ansicht (letzte 30 Tage)
Robert
Robert am 24 Feb. 2016
Beantwortet: the cyclist am 24 Feb. 2016
Consider 2 matrices
A = [1, 2, 3, 4;
5, 6, 7, 8]
B = [NaN NaN 1 1;
NaN 1 1 NaN]
How can
C = [NaN NaN 3 4;
NaN 6 7 NaN]
I can do this for an individual row or column but can't get it to work for matrix. Thanks in advance for any help

Akzeptierte Antwort

the cyclist
the cyclist am 24 Feb. 2016
C = A;
C(isnan(B)) = NaN

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by