ignore NaN values in loop

조회 수: 31 (최근 30일)
Cristina Elmeua
Cristina Elmeua 2021년 1월 12일
댓글: Cristina Elmeua 2021년 1월 16일
Hi everyone,
So I have a numeric matrix "walknov" with several columns of different lengths and I interpolated them all to be 100 points and created a new matrix "CC" with the following loop:
for i = 2:16
A = walknov(:,i);
A(any(isnan(A),2),:) = [];
A = interpft(A, 100);
CC = [CC A];
end
NaNs fill the differences of length between columns, so I have eliminated each row containing NaN everytime I interpolate each column. The problem is that some columns have no values at all (i.e. only NaNs) and this makes the loop stop as the interpolation function won't accept such values.
I do not want to drop the column as I need the matrix to match other matrices, but instead I would like to just leave NaN values in those missing columns. Is there a way to solve this?
Thanks a lot!
PS: I have attached a sample dataset

채택된 답변

Walter Roberson
Walter Roberson 2021년 1월 12일
편집: Walter Roberson 2021년 1월 12일
if isempty(A)
CC(:,i) = nan;
else
A = interpft(A, 100);
CC(:,i) = A;
end
Can interpft operate with only one non-nan value?
  댓글 수: 1
Cristina Elmeua
Cristina Elmeua 2021년 1월 16일
This has worked great Walter. A very simple and effective approach, thanks.

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

추가 답변 (2개)

David Hill
David Hill 2021년 1월 12일
CC=[];
for i = 2:16
A = walknov(:,i);
A = interpft(A(~isnan(A)), 100);
if isempty(A)
CC=[CC;nan(1,100)];
else
CC = [CC;A];
end
end
  댓글 수: 1
Cristina Elmeua
Cristina Elmeua 2021년 1월 16일
Thanks for the help David!

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


Adam Danz
Adam Danz 2021년 1월 12일
The image below shows the location of your missing values. The good news is that the missing values either consume entire columns or the end of columns instead of being dispersed.
To work around this,
for i = 2:16
A = walknov(:,i);
A(any(isnan(A),2),:) = [];
if isempty(A)
A = NaN(size(CC,1)); % 1 column?
else
A = interpft(A, 100);
end
CC = [CC A];
end
This assumes CC is defined before the loop. Otherwise if the empty 'A' appears on the first loop, there will be an error indicating that CC is not defined.
Show NaN pattern.
imagesc(isnan(w2_2)) % or heatmap(double(isnan(w2_2))
  댓글 수: 1
Cristina Elmeua
Cristina Elmeua 2021년 1월 16일
Thanks for the help Adam!

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

카테고리

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

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by