smoothing a graph using matlab
7 次查看(过去 30 天)
显示 更早的评论
how can I smooth data imported from one column (Excel sheet) using Matlab , Thanks
how to smooth the corners?

0 个评论
采纳的回答
Star Strider
2022-5-28
y = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1013745/Book1.xlsx');
L = numel(y);
x = linspace(0, L-1, L);
figure
plot(x, y)
grid
yf = smoothdata(y, 'sgolay', fix(L/25));
figure
plot(x, yf)
grid
Experiment with the window size (third argument in smoothdata) to get the result you want.
.
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Curve Fitting Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!