Azzera filtri
Azzera filtri

How can I find the coefficients of this polynomial?

2 visualizzazioni (ultimi 30 giorni)
I need to find the coefficients of the polynomial that passes through the points (0, 10), (1, 35), (3, 31) and (4, 2).
I appreciate it a lot if anyone can help.

Risposte (1)

Stephan
Stephan il 17 Nov 2020
Modificato: Stephan il 17 Nov 2020
x = [0 1 3 4];
y = [10 35 31 2];
coeffs = polyfit(x,y,3)
plot(0:0.1:5,polyval(coeffs,0:0.1:5),'b-')
hold on
scatter(x,y,'bo')
hold off
  2 Commenti
John D'Errico
John D'Errico il 17 Nov 2020
Probably should not do what is clearly homework, with no effort made by the poster.

Accedi per commentare.

Categorie

Scopri di più su Polynomials in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by