horner
ホーナーの入れ子にされた多項式表現
説明
例
多項式のホーナー形式
多項式のホーナー表現を求めます。
syms x p = x^3 - 6*x^2 + 11*x - 6; horner(p)
ans = x*(x*(x - 6) + 11) - 6
2 番目の引数を使用して、多項式内の変数を指定します。
syms a b y p = a*y*x^3 - y*x^2 - 11*b*y*x + 2; horner(p,x)
ans = 2 - x*(11*b*y + x*(y - a*x*y))
horner(p,y)
ans = 2 - y*(- a*x^3 + x^2 + 11*b*x)
入力引数
p
— 多項式
シンボリック式 | シンボリック関数 | シンボリック式の配列 | シンボリック関数の配列
多項式。シンボリック式またはシンボリック関数、あるいはシンボリック式またはシンボリック関数の配列として指定します。
var
— 変数
シンボリック変数 | シンボリック変数の配列
変数。シンボリック変数またはシンボリック変数の配列として指定します。
バージョン履歴
R2006a より前に導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)