-
1 Comment
Engineer_Josh
on 7 Dec 2016
function B = remove_nan_rows(A)
B = A;
B(any(isnan(A')),:) = [];
end
Why isn't this working?
Suggested Problems
-
1680 Solvers
-
10362 Solvers
-
890 Solvers
-
Create a Multiplication table matrix...
575 Solvers
-
406 Solvers
More from this Author96
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!