Problem 25. Remove any row in which a NaN appears
Solution Stats
Problem Comments
-
19 Comments
It's a good problem!
very good problem
ya.. but not so difficult though
nice trick with the " ' "))
very good problem
I really like this problem. It makes me to improve my solutions again and again. But it seems that I still use too many loops....
lol test case with transform was good one!
do not understand how one get so efficient solution on this (and to be honest other problems as well)
thanks you very much.
Why doesn't this work? It works when I use it on my computer...
function B = remove_nan_rows(A)
B = A;
B(any(isnan(A')),:) = [];
end
MATLABotic!
These types of problems are giving me so many useful functions
A(~sum(isnan(A),2),:) this workde for me
Cool!
Very good problem!
A easy problem if you know fuction isnan.
Nice one!
Oh
Easy one
Solution Comments
Show commentsProblem Recent Solvers8212
Suggested Problems
-
Which values occur exactly three times?
4805 Solvers
-
Return unique values without sorting
872 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
458 Solvers
-
6846 Solvers
-
667 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!