how create an matrix without NaN data?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Carlos Batista
el 15 de Jul. de 2014
Comentada: Carlos Batista
el 15 de Jul. de 2014
Hi users Matlab...
I have an matrix as dimensions 180x89x1919> This my matrix have some data NaN.
This is possible?
5 comentarios
Respuesta aceptada
José-Luis
el 15 de Jul. de 2014
You would need to replace the NaN's with something:
your_mat(your_mat ~= your_mat) = some_value;
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Preprocessing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!