Smooth data for slowly-sampled data
显示 更早的评论
Hi,
I have a data sampled slow as blue. I need to obtain the red curve that smoothen out the data. Can anyone please tell me what Matlab command to handle this?
Thanks,
Dave

回答(2 个)
Image Analyst
2020-2-10
0 个投票
Try sgolayfilt() in the Signal Processing Toolbox. That's one way.
See my attached demo.

3 个评论
Dave Lee
2020-2-10
Image Analyst
2020-2-10
How does it lead to phase lag? The window is centered over the point so it uses points both ahead of and behind the signal so the filter value is at exactly the same time point as the original signal. What elements do you want to include when you are getting the smoothed output value at a particular time point?
Akira Agata
2020-2-10
How about applying interpolation?
The following is an example:
% Original data
time = 1:10;
value = rand(1,10);
% Apply interpolation
time2 = linspace(1,10);
value2 = interp1(time,value,time2,'pchip');
% Visualize the result
figure
scatter(time,value)
hold on
plot(time2,value2)
legend({'Original data','After interpolation'},'FontSize',12)
grid on
box on

类别
在 帮助中心 和 File Exchange 中查找有关 Smoothing and Denoising 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
