Cody Problem 25. Remove any row in which a NaN appears

조회 수: 1 (최근 30일)
Hidd_1
Hidd_1 2021년 4월 9일
답변: DGM 2021년 4월 9일
I found difficulties with the Problem 25 on Cody here is my solution:
function B = remove_nan_rows(A)
[x,y]=size(A)
[row, col] = find(isnan(A))
B=[];
for i=1:x
if (i ~=row)
B=[B ;A(i,:)]
end
end
for A=1:10, the algorithm didn't work, can someone help me with figuring out what's wrong.
Thanks in advance!
  댓글 수: 3
DGM
DGM 2021년 4월 9일
Consider that isnan(A) returns a logical array, and that any() can work along a specified direction.
B = A(~any(isnan(A),2),:);
or something like that.
Hidd_1
Hidd_1 2021년 4월 9일
@DGM Can you please rewite you answer on another comment so I can accept it as an answer!

댓글을 달려면 로그인하십시오.

채택된 답변

DGM
DGM 2021년 4월 9일
Okay.
Consider that isnan(A) returns a logical array, and that any() can work along a specified direction.
B = A(~any(isnan(A),2),:);
or something like that.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by