how create an matrix without NaN data?
1 view (last 30 days)
Show older comments
Carlos Batista
on 15 Jul 2014
Commented: Carlos Batista
on 15 Jul 2014
Hi users Matlab...
I have an matrix as dimensions 180x89x1919> This my matrix have some data NaN.
This is possible?
5 Comments
Accepted Answer
José-Luis
on 15 Jul 2014
You would need to replace the NaN's with something:
your_mat(your_mat ~= your_mat) = some_value;
More Answers (0)
See Also
Categories
Find more on Data Preprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!