Determining the 4th degree polynomial

3 ビュー (過去 30 日間)
Utku Palakci
Utku Palakci 2018 年 12 月 30 日
コメント済み: Utku Palakci 2018 年 12 月 30 日
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).

採用された回答

Walter Roberson
Walter Roberson 2018 年 12 月 30 日
編集済み: Walter Roberson 2018 年 12 月 30 日
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 件のコメント
Utku Palakci
Utku Palakci 2018 年 12 月 30 日
Thank you so much.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by