I have a question about RESAMPLE
3 次查看(过去 30 天)
显示 更早的评论
when I resample some data,I found that the picture of the start and the end of the resampled-data maybe error,they are shaking,just like drifting
my code:
data2 = resample(data,2,1);
this is the image of the raw data
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146210/image.jpeg)
this is the image of the data after RESAMPLE
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146211/image.jpeg)
U can see some lines are not on the ring.the under part of the ring is the start of the 'data2'. on the right side of the ring is the end of the 'data2'.
this picture is the (1:100) of the 'data2' and 'data' and the red line is the 'data',the blue line is the 'data2'
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146212/image.jpeg)
my question is why can see the fluctuation.
0 个评论
采纳的回答
Youssef Khmou
2014-11-25
编辑:Youssef Khmou
2014-11-25
This is an interesting remark, however in Documentation, it was mentioned that re-sampling has side effect because of filtering process, the edges of the re sampled vector are deviated.
2 个评论
Youssef Khmou
2014-11-26
you can study the variation of that deviation with a fourth parameter n, resample(data,2,1,n) the default value is 10, try with zero. But there no definite answer on how to avoid the error.
Remark : you want to re-sample the data with double, you can use the function interp, like in this example :
t=[1e-4:0.1:2*pi]';
data=[cos(t),sin(t)];
x2=interp(data(:,1),2);
y2=interp(data(:,2),2);
figure; plot(data(:,1),data(:,2),'k+');
hold on
plot(x2,y2,'r')
legend(' original','re sampled');
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!