Constant error plotting function

1 回表示 (過去 30 日間)
Gavin Seddon
Gavin Seddon 2016 年 5 月 19 日
コメント済み: Gavin Seddon 2016 年 5 月 20 日
when I use fplot I receive an error that the first constant that's already been used. I tried using @(varargin) command however I received the following errors:
fplot (@(varargin) p1*x^6 + p2*x^5 + p3*x^4 + p4*x^3 + p5*x^2 + p6*x + p7(varargin{0:4000}))
Error using fplot (line 51)
Not enough input arguments.
Will someone help with this problem?
Gavin.

採用された回答

Walter Roberson
Walter Roberson 2016 年 5 月 19 日
I suspect you want
fplot (@(x) p1*x.^6 + p2*x.^5 + p3*x.^4 + p4*x.^3 + p5*x.^2 + p6*x + p7, [0, 4000])
  1 件のコメント
Gavin Seddon
Gavin Seddon 2016 年 5 月 20 日
Thanks Walter.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by