フィルターのクリア

Plotting a polynomial represented by a vector

2 ビュー (過去 30 日間)
Christopher
Christopher 2013 年 8 月 6 日
say I have a vector such as [1,2,3,4,5] which represents the function x^4 + 2x^3 + 3x^2 + 4x + 5. How could matlab directly interpret a vector as a polynomial function, and plot it? Thanks.

採用された回答

David Sanchez
David Sanchez 2013 年 8 月 6 日
From MATLAB documentation:
The polynomial p(x) = 3x^2 + 2x + 1 is evaluated at x = 5, 7, and 9 with
p = [3 2 1];
polyval(p,[5 7 9])
which results in ans =
86 162 262
  1 件のコメント
Christopher
Christopher 2013 年 8 月 6 日
Oh, I see how that works. Just evaluate it over an interval. Thank you!

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

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