Determining the 4th degree polynomial

3 Ansichten (letzte 30 Tage)
Utku Palakci
Utku Palakci am 30 Dez. 2018
Kommentiert: Utku Palakci am 30 Dez. 2018
I need help about determine the 4th degree polynomial y(x) that passes through the following points:
(0,−1), (1, 1), (3, 3), (5, 2) and (6,−2).

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 30 Dez. 2018
Bearbeitet: Walter Roberson am 30 Dez. 2018
polyfit([0 1 3 5 6], [-1 1 3 2 -2], 4)
If you need symbolic form you could poly2sym() the result of the above.

Weitere Antworten (0)

Kategorien

Mehr zu Polynomials finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by