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
coeffs - 多変数多項式のすべての係数を抽出
使い方
coeffs(p, x, 't');
パラメータ
p - 多変数多項式
x - (オプション) 不定元、あるいは不定元のリスト/集合
t - (オプション) 未評価の名前
説明
coeffs 関数は、不定元 x に関する多項式 p のすべての係数の式列を表示します。
x が指定されていないとき、coeffs は p のすべての不定元に対する係数を計算します (indets 関数を参照)。もし第 3 引数が指定されているとき (名前により呼ぶ)、それは p の項の式列が割り当てられます。係数と p の項の間には 1 対 1 の対応があります。
p は適当な不定元についてまとめられなければいけないことに注意して下さい。
例
s := 3*v^2*y^2+2*v*y^3;
coeffs( s );
coeffs( s, v, 't' );
t;
参照
collect, coeff, tcoeff, lcoeff, indets PolynomialTools[CoefficientVector]
Download Help Document