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
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