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
lcoeff - 多変数多項式の先頭係数
tcoeff - 多変数多項式の尾係数
使い方
lcoeff(p) or tcoeff(p)
lcoeff(p, x) or tcoeff(p, x)
lcoeff(p, x, 't') or tcoeff(p, x, 't')
パラメータ
p - 多変数多項式
x - (オプション) 不定元あるいは、不定元のリストまたは集合
't' - (オプション) 未評価の名前
説明
関数 lcoeff と tcoeff は、多項式 p の不定元 x に関する先頭 (尾) 係数を返します。 x が指定されなければ lcoeff (tcoeff) は多項式 p のすべての不定元に関する先頭(尾)係数を計算します。第3引数 t が指定されているとき (「名前による呼び出し」)、多項式 p の先頭 (尾) 項が割り当てられます。
x が単独の不定元で d が x の多項式 p の次数のとき、lcoeff(p, x) は、 coeff(p, x, d) と同値です。x が不定元のリストか集合のとき、lcoeff (tcoeff) は変数 x を含む多変数多項式と見なした多項式 p の先頭 (尾) 係数を計算します。
lcoeff や tcoeffを呼び出す前に、多項式 p を適当な不定元に関してまとめなければならないことに注意して下さい。その他の詳細に関しては、coeff を参照して下さい。
例
s := 3*v^2*w^3*x^4+1;
lcoeff(s);
tcoeff(s);
lcoeff(s, [v,w], 't');
t;
参照
collect, coeff, coeffs, indets, degree, ldegree
Download Help Document