help with curve fitting

2 Ansichten (letzte 30 Tage)
random1072
random1072 am 4 Mai 2020
Bearbeitet: Ameer Hamza am 4 Mai 2020
trying to fit the curve on my graph so that it is rounded not sharp. Thank you.
figure(2);
plot(q_0,'ko-','Linewidth',1.5)
hold on
plot(q_1,'rs-','Linewidth',1.5)
plot(q_2,'bd-','Linewidth',1.5)
plot(q_3,'gv-','Linewidth',1.5)
hold off
xlim([1 13])
fit
legend({'Q0','Q1','Q2','Q3'})

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 4 Mai 2020
Bearbeitet: Ameer Hamza am 4 Mai 2020
If you don't have an equation of your dataset, then it will be simpler to use the following methods
spline()
rng(0)
x = 1:10; % x-values
y = rand(size(x)); % random y-values
xv = linspace(min(x), max(x), 100); % more points on x-axis to make a smooth curve
yv = spline(x, y, xv); % interpolation using spline
plot(x, y, 'ro-', xv, yv, 'b-')
pchip()
rng(0)
x = 1:10; % x-values
y = rand(size(x)); % random y-values
xv = linspace(min(x), max(x), 100); % more points on x-axis to make a smooth curve
yv = pchip(x, y, xv); % interpolation using pchip
plot(x, y, 'ro-', xv, yv, 'b-')
makima()
rng(0)
x = 1:10; % x-values
y = rand(size(x)); % random y-values
xv = linspace(min(x), max(x), 100); % more points on x-axis to make a smooth curve
yv = makima(x, y, xv); % interpolation using makima
plot(x, y, 'ro-', xv, yv, 'b-')

Weitere Antworten (1)

David Hill
David Hill am 4 Mai 2020
Use fit() function

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by