필터 지우기
필터 지우기

Can interp1 function be used when the time interval of data isn't uniform?

조회 수: 1 (최근 30일)
In the interp1 function, yi = interp1(x,Y,xi,method), I have x as time vector with non-uniform interval. But the length of x and Y vectors are same. Can I use the interp1 function to interpolate the data?

채택된 답변

José-Luis
José-Luis 2012년 8월 20일
Yes, but the longer your interval the more uncertain your results.
  댓글 수: 4
Walter Roberson
Walter Roberson 2012년 8월 20일
All line segments have the same number of mathematical points ("the infinity of real numbers"), so the potential mathematical variability over any line segment is the same as for any other line segments. One cannot generalize about uncertainty over different intervals without knowing the process responsible for the variability.
As a quick example, the uncertainty of the sinc() function over short intervals near 0 is much greater than the uncertainty over long intervals at large x. Larger intervals are not always more uncertain.
José-Luis
José-Luis 2012년 8월 20일
편집: José-Luis 2012년 8월 20일
I see your point. It depends on what you are modelling or measuring of course. However, even if you (think) you know your process, there is the problem of unknown unknowns. Unless the system is a very simple one, things will arise that will surprise you, therefore the more uncertainty the larger the interval. And if you are sure of how it works, then why would you need to measure? It all depends on your perspective (as always), and it is an interesting discussion, but maybe overkill for the question of the op.

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

추가 답변 (1개)

Matt Fig
Matt Fig 2012년 8월 20일
When I have a question like this, I just do a little experiment.
x = sort(rand(1,30)*2*pi); % Non-uniform data
y = sin(x); % Underlying function
xi = 0:.25:2*pi; % Interpolation points
yi = interp1(x,y,xi,'spline');
plot(x,y,'*r',xi,yi,'b')

카테고리

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