Azzera filtri
Azzera filtri

smoothing a graph using matlab

1 visualizzazione (ultimi 30 giorni)
Abeer Aboul Azm
Abeer Aboul Azm il 28 Mag 2022
Risposto: Star Strider il 28 Mag 2022
how can I smooth data imported from one column (Excel sheet) using Matlab , Thanks
how to smooth the corners?

Risposta accettata

Star Strider
Star Strider il 28 Mag 2022
There are several opotions, including sgolayfilt and smoothdata and frequency-selective filters —
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.
.

Più risposte (1)

KSSV
KSSV il 28 Mag 2022
Read about smooth, polyfit

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by