Polyfit not showing a curve

8 vues (au cours des 30 derniers jours)
Jamie Ford
Jamie Ford le 8 Oct 2019
Commenté : Star Strider le 8 Oct 2019
Trying to plot a curve using polyfit. This is my code.
% store coordinates
x = [5.2 5.5 5.6 5.8];
y = [6.408 16.125 19.816 27.912];
% use polyfit to get coefficients of cubic
p = polyfit(x, y, 3);
scatter(x, y, 'black');
hold on
plot(p, 'green');
When plotted, p is jagged and looks nothing like a cubic

Réponse acceptée

Thiago Henrique Gomes Lobato
polyfit only get you the coefficients, you then have to actually evaluate some values to get the curve. An easy alternative is to use the function polyval (https://de.mathworks.com/help/matlab/ref/polyval.html), which will evaluate the given polynom for the given points. The following code should give you the result you would expect:
% store coordinates
x = [5.2 5.5 5.6 5.8];
y = [6.408 16.125 19.816 27.912];
% use polyfit to get coefficients of cubic
p = polyfit(x, y, 3);
yfit = polyval(p,x); % Evaluate polynomial coefficients p in values x
scatter(x, y, 'black');
hold on
plot(x,yfit, 'green');

Plus de réponses (1)

Catégories

En savoir plus sur Discrete Data Plots dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by