Determining the 4th degree polynomial

2 vues (au cours des 30 derniers jours)
Utku Palakci
Utku Palakci le 30 Déc 2018
Commenté : Utku Palakci le 30 Déc 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).

Réponse acceptée

Walter Roberson
Walter Roberson le 30 Déc 2018
Modifié(e) : Walter Roberson le 30 Déc 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.
  1 commentaire
Utku Palakci
Utku Palakci le 30 Déc 2018
Thank you so much.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Polynomials dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by