ignore NaN values in loop

35 次查看(过去 30 天)
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

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))

类别

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