smoothing a graph using matlab
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abeer Aboul Azm
am 28 Mai 2022
Beantwortet: Star Strider
am 28 Mai 2022
how can I smooth data imported from one column (Excel sheet) using Matlab , Thanks
how to smooth the corners?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 28 Mai 2022
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 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Curve Fitting Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!