how can I plot smooth graph
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I do have much noise in the data from a test. So my graph doesn't look good. y axis data are consistent however x axis data have fluctuation. How can I smooth the graph like the black graph in the picture keeping the maximum value of y in matlab?
1 Kommentar
Raghunandan V
am 14 Mär. 2019
I think there is a seperate tool; box for this purpose(Curve Fitting Toolbox). Check it out.
Antworten (1)
Arvind Sathyanarayanan
am 14 Mär. 2019
A moving average filter might do the job. Play around with the number of points to preserve the peak value.
N = 10;
h = (1/N)*ones(1,N);
filtered = conv(orginal, h);
filtered = filtered(N:end);
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!