how create an matrix without NaN data?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Carlos Batista
il 15 Lug 2014
Commentato: Carlos Batista
il 15 Lug 2014
Hi users Matlab...
I have an matrix as dimensions 180x89x1919> This my matrix have some data NaN.
This is possible?
5 Commenti
Risposta accettata
José-Luis
il 15 Lug 2014
You would need to replace the NaN's with something:
your_mat(your_mat ~= your_mat) = some_value;
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Preprocessing 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!