How reduce data from 3917x2 to 1868x2 without change the entire of graph?

조회 수: 1 (최근 30일)
I have zdata.mat contains data 3917x2 I need a way to reduce data to 1868x2 , (hint: first column refers to x axis, second column refers to y axis)

채택된 답변

John D'Errico
John D'Errico 2024년 8월 23일
편집: John D'Errico 2024년 8월 23일
Just take every other data point, if you just want to roughly reduce the size. But you say you want a specific length. So then you would need to interpolate.
load zdata.mat
plot(z(:,1),z(:,2),'-')
x = z(:,1); y = z(:,2);
xnew = linspace(min(x),max(x),1868);
ynew = interp1(x,y,xnew);
length(ynew)
ans = 1868
plot(xnew,ynew,'-')
Finally, if you want to do some smoothing, you might try something like:
ysmooth = smooth(x,y);
ynewsmooth = interp1(x,ysmooth,xnew);
plot(xnew,ynewsmooth,'-')
And depending on the smoothing method you choose, you can adjust the amount of smoothing done. You could also use a smoothing spline. Something like this (fit requires the curve fitting toolbox.)
spl = fit(x,y,'smoothingspline');
ynewspl = spl(xnew);
plot(xnew,ynewspl,'-')
Remember that when you have a sharp spike as this curve shows, anything you do to downsample such a curve may miss exactly where that spike happens, and how far it extends. But that is a given. If you reduce the sampling frequency, then you also reduce the information content of your data.
  댓글 수: 3
John D'Errico
John D'Errico 2024년 8월 23일
Note that interp1 makes no presumption of a uniform stride between data points. This is also the case for fit, which does not give a hoot about uniformity of stride. Finally, while SOME of the methods offered in smooth do care, not all of them do.
Walter Roberson
Walter Roberson 2024년 8월 23일
My note about the differences was after your original answer, but before you did the interpolation.

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

추가 답변 (0개)

카테고리

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