how create an matrix without NaN data?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Carlos Batista
am 15 Jul. 2014
Kommentiert: Carlos Batista
am 15 Jul. 2014
Hi users Matlab...
I have an matrix as dimensions 180x89x1919> This my matrix have some data NaN.
This is possible?
5 Kommentare
Akzeptierte Antwort
José-Luis
am 15 Jul. 2014
You would need to replace the NaN's with something:
your_mat(your_mat ~= your_mat) = some_value;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Preprocessing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!