Azzera filtri
Azzera filtri

How to avoid or delete Nan values in addtion?

1 visualizzazione (ultimi 30 giorni)
if i have2 matrix
A=[2 NaN ; 3 NaN]
B=[NaN 4 ; NaN 5]
I want C as
[2 4 ; 3 5 ]
edited by guillaume: Nan is not valid in matlab. NaN or nan is.

Risposta accettata

madhan ravi
madhan ravi il 10 Ott 2018
Modificato: madhan ravi il 10 Ott 2018
A=[2 NaN ; 3 NaN] %Edited
B=[NaN 4 ; NaN 5]
A(isnan(A))=0
B(isnan(B))=0
C=[A;B]'
  3 Commenti
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar il 10 Ott 2018
Modificato: Shubham Mohan Tatpalliwar il 10 Ott 2018
Can i change Nan values to zero and then add both matrices?
that would be more clearer and easier i guess?

Accedi per commentare.

Più risposte (1)

Guillaume
Guillaume il 10 Ott 2018
If I understood correctly,
C = sum(cat(3, A, B), 3, 'omitnan')

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by