Curve smoothing / fitting
Ältere Kommentare anzeigen
Hi guys,
I need your help again.
how can i smooth or fitting my curve?
Many Thanks
Antworten (1)
Do you mean you want a smooth line that goes through all the points? You could fit a spline:
% Set seed for reproducibility
rng default
% The data
x = 1:6;
y = rand(size(x));
% Fit a spline
xq = 1:0.1:6;
s = spline(x,y,xq);
% Plot
figure
plot(x,y,"ko",xq,s,"r--")
If you mean you want to fit some functional form (like maybe a square wave?) to the data, you'll need to give us more info. Also, uploading the data will help.
3 Kommentare
Latifa Bouguessaa
am 25 Jul. 2022
the cyclist
am 26 Jul. 2022
Unfortunately, I can't run your code, because I don't have the Image Processing Toolbox.
Latifa Bouguessaa
am 26 Jul. 2022
Kategorien
Mehr zu Smoothing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
