find the coefficient of polynomial

8 ビュー (過去 30 日間)
Dung Tran Hoang
Dung Tran Hoang 2020 年 4 月 22 日
回答済み: Image Analyst 2020 年 4 月 22 日
i have a table below that list value of function f(x) at various points
x | 1.0 | 1.3 | 1.6 | 1.9 | 2.2
f(x) | 0.7651977 | 0.6200860 | 0.4554022 | 0.2818186 | 0.1103623
Anyone know how to find the coefficient of polynomial of f(x) = A + + C(x^2) + D(x^3)
  2 件のコメント
dpb
dpb 2020 年 4 月 22 日
Type
lookfor polyf
at command line...
Steven Lord
Steven Lord 2020 年 4 月 22 日
Search the documentation for the word "polynomial".
docsearch polynomial

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

採用された回答

Image Analyst
Image Analyst 2020 年 4 月 22 日
Use polyfit():
coefficients = polyfit(x, fx, 3);
D = coefficients(1);
C = coefficients(2);
B = coefficients(3);
A = coefficients(4);

その他の回答 (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