Curve smoothing / fitting

조회 수: 1 (최근 30일)
Latifa Bouguessaa
Latifa Bouguessaa 2022년 7월 25일
댓글: Latifa Bouguessaa 2022년 7월 26일
Hi guys,
I need your help again.
how can i smooth or fitting my curve?
Many Thanks

답변 (1개)

the cyclist
the cyclist 2022년 7월 25일
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
the cyclist
the cyclist 2022년 7월 26일
Unfortunately, I can't run your code, because I don't have the Image Processing Toolbox.
Latifa Bouguessaa
Latifa Bouguessaa 2022년 7월 26일
:-(

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by