Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
coeff - 多項式の係数の抽出
使い方
coeff(p,x)
coeff(p,x,n)
coeff(p,x^n)
パラメータ
p - x の多項式
x - 変数 (式)
n - (オプション) 整数
説明
coeff 関数は、多項式 p 中の x^n の係数を抽出します。
第 3 引数がないときは、第2引数で決められます。したがって、coeff(p,x^n) は n <> 0 に対して coeff(p,x,n) と同値です。
第 2 引数が数値か積である場合は、意味をなさないので許されません。
関連する lcoeff, tcoeff, coeffs 関数は、最高次の係数、最低次の係数、p の中の x に関するすべての係数を抽出します。
例
p := 2*x^2 + 3*y^3 - 5: coeff(p,x,2);
coeff(p,x^2);
coeff(p,x,0);
q := 3*a*(x+1)^2 + sin(a)*x^2*y - y^2*x + x - a: coeff(q,x);
しかしながら、次の形は許されません。
coeff(p,x*y,2);
Error, wrong number (or type) of parameters in function coeff
参照
lcoeff, tcoeff, coeffs, sort, coeftayl
Download Help Document