필터 지우기
필터 지우기

Interpolation with NaN: how to interpolate a vector so it DOES contract the NaN

조회 수: 2 (최근 30일)
Adam Pigon
Adam Pigon 2017년 11월 25일
댓글: Adam Pigon 2017년 11월 26일
Dear All, I have the following problem:
There are the following vectors:
a = [-1, 0.15, 0.7, 0.9, 1.1, 1.98, NaN, NaN, 2.7, 2.9, 3.1, NaN, NaN, NaN],
b = randn(length(a))
x = 0:5
I would like to interpolate x on a:
V = interp1(a,b,x)
Unfortunately, vector a contains NaN, which makes it impossible. I could use
V = interp1(a(~isnan(a)),b(~isnan(a)),x)
but then I get crude interpolation for values, in this case, between 1.98 and 2.7 while they should in fact do not exist, i.e. they should get NaN. How to do it ? How can I 'transfer' NaN values from vector a to vector x so that all x values that are next to NaN in a turn into NaNs and I can use interp1(a(~isnan(a)),b(~isnan(a)),x) getting proper results ?
Any help would be appreciated!

답변 (1개)

Matt J
Matt J 2017년 11월 26일
If you mark missing data by putting NaNs in "b" instead of in "a", then you will be able to interpolate freely.
  댓글 수: 3
Matt J
Matt J 2017년 11월 26일
편집: Matt J 2017년 11월 26일
You should restore the NaNs in "a" to whatever values they had before you overwrote them with NaNs.
Adam Pigon
Adam Pigon 2017년 11월 26일
if it were that easy I would have already done it :) These values do not exist. Fortunately, there is a solution to this problem: you can perform a linear interpolation of these values.
a = [1 2 3 NaN NaN 5 NaN 6 7 NaN 8];
t = 1:length(a);
d = interp1(t(~isnan(a)),a(~isnan(a)),t);
Then it is enough to give vector b NaN's using indices from vector a and perform the interpolation using interp1. Problem solved!

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

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by