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
linalg[exponential] - 行列の指数関数
使い方
exponential(A)
exponential(A, t)
パラメータ
A - 正方行列
t - (オプション) 型 name のスカラーパラメータ
説明
行列の指数関数 exp(A*t) は A と同じサイズの行列で、次のように定義されます。I を単位行列として、exp(A*t) = I + A*t + 1/2!*A^2*t^2 + ...
第 2 パラメータが与えられない場合は、行列から第 1 番目の不定元が (もしあれば) 取り除かれ、パラメータとして使われます。
A の固有値が求められる場合、指数関数は記号的な答を返します。浮動小数点近似を得たい場合は、A 内で少なくとも1個以上の浮動小数点を含む成分を使います。
コマンド with(linalg,exponential) により、このコマンドの省略形を使うことができます。
例
with(linalg):
A := array( [[t,0,0],[0,t,0],[0,0,t]] );
exponential(A);
B := array( [[-13,-10],[21,16]] );
exponential(B, t);
参照
exp
Download Help Document