Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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