Engineer_Josh - MATLAB Cody - MATLAB Central

Engineer_Josh

13035
Rank
3
Badges
390
Score
1 – 44 of 44

Engineer_Josh submitted a Comment to Problem 25. Remove any row in which a NaN appears

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

on 7 Dec 2016

Engineer_Josh received Commenter badge for Solution 1076751

on 7 Dec 2016

Engineer_Josh submitted a Comment to Solution 1076751

function B = remove_nan_rows(A) B = A; B(any(isnan(A')),:) = []; end Why isn't this working?

on 7 Dec 2016

Engineer_Josh received Promoter badge for Problem 5. Triangle Numbers

on 7 Dec 2016

Engineer_Josh received Solver badge for Solution 1076187

on 7 Dec 2016

1 – 44 of 44
Go to top of page