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
VectorCalculus[Jacobian] - 関数のリストまたはベクトルに対するヤコビ行列の計算
使い方
Jacobian(f, v, det)
パラメータ
f - リスト(代数) または 'ベクトル'(代数)
v - リスト(名前); 微分変数の指定
det - (オプション) identical('determinant')=truefalse の形の等式; 行列式を返すかどうかの指定
説明
Jacobian(f, v, det) コマンドは、v 内の変数に関して、関数 f のリストまたはベクトルに対する 行列を計算します。det が指定されている場合には、その行列の行列式を計算します。
det の右辺が true ならば、ヤコビ行列とその行列式を含む式列が返されます。det の右辺が false ならば、ヤコビ行列が返されます。このパラメータが語 'determinant' である場合には、パラメータは 'determinant'=true というように解釈されます。det パラメータが指定されていない場合には、そのデフォルトは 'determinant'=false となります。
行列式の計算が要求される場合、f に与えられる成分関数の数は、v に与えられる変数の数と同じでなければなりません。
例
with(VectorCalculus):
Warning, the assigned names <,> and <|> now have a global binding Warning, these protected names have been redefined and unprotected: *, +, ., Vector, diff, int, limit, series
Jacobian( [r*cos(t),r*sin(t),r^2*t], [r,t] );
Jacobian( [r*cos(t),r*sin(t)], [r,t], 'determinant' );
(M,d) := Jacobian( [r*sin(phi)*cos(theta),r*sin(phi)*sin(theta),\ r*cos(phi)], [r,phi,theta], 'determinant'=true );
simplify(d,trig);
参照
VectorCalculus パッケージの紹介, VectorCalculus[Hessian], VectorCalculus[Wronskian]
Download Help Document