smoothing a graph using matlab
1 回表示 (過去 30 日間)
古いコメントを表示
how can I smooth data imported from one column (Excel sheet) using Matlab , Thanks
1 件のコメント
Walter Roberson
2022 年 5 月 28 日
Are you expecting the techniques to be different than for https://www.mathworks.com/matlabcentral/answers/1728795-smoothing-a-graph-using-matlab?s_tid=srchtitle ?
回答 (1 件)
Ganesh Naik
2022 年 5 月 29 日
You can use the "smooth: in built function in matlab to smooth the signal. Here is one solution
close all;
clc;
data = readmatrix('3.xlsx')
B = smoothdata(data);
plot(data,'-o'); hold on; plot(B,'-x')
legend('Original Data','Smoothed Data')
0 件のコメント
参考
カテゴリ
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!