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
LinearAlgebra[MatrixFunction] - 正方行列 A に対して F(A) の決定
使い方
MatrixFunction(A, F, x, outputoptions=[outopts])
パラメータ
A - 正方行列
F - 解析的な式
x - 変数 あるいは NoUserValue; 行列多項式 の構成に使用する f の 変数 を指定
outopts - (オプション) option=value の形をした(1 つまたは複数の)等式; ここで、option は、attributes, datatype, order, readonly, shape, storage のいずれか; Matrix コンストラクタに対する(1つまたは複数の)オプションを指定
説明
MatrixFunction(A) コマンドは、重複を含み、A の固有値 lambdaそれぞれに対して、[lambda, F( lambda )] を補間して得られる行列を返します。 ここで、行列多項式は r(lambda) = F(lambda) - p(lambda)*q(lambda) であり、p(x) は特性多項式、q(lambda) は商、r(lambda) は 剰余です。
output オプション outopts の詳細は、 Matrix を参照してください。
例
with(LinearAlgebra): A := Matrix([[-13, -10], [21, 16]]);
MatrixFunction(A, v^2, v);
MatrixFunction(A, sin(x), x);
MatrixFunction(A, exp(x), x);
MatrixExponential(A, t);
MatrixFunction(A, exp(x*t), x);
MatrixFunction(A, ln(x), x, outputoptions=[readonly=true]);
B := Matrix([[y]]);
MatrixExponential(B);
MatrixFunction(B, exp(y), y);
MatrixFunction(B, exp(y));
参照
indets, LinearAlgebra, LinearAlgebra[MatrixExponential], LinearAlgebra[MatrixPower], Matrix, Vector
Download Help Document