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[Adjoint] - 正方行列の随伴行列の計算
使い方
Adjoint(A, outopts)
パラメータ
A - 正方行列
outopts - (オプション) outputoptions=list の形をした等式; 結果として得られるオブジェクトのコンストラクタオプション
説明
Adjoint(A) 関数は、A. M = Determinant(A) . IdentityMatrix(Dimensions(A)) の条件をみたすような行列 M を作成します。
A が正則行列なら、随伴行列は一意的に決まります。
outputoptions オプション (outopts) は、結果を作成する Matrix コンストラクタに付加情報 (readonly, shape, storage, order, datatype, attributes) を与えます。
この関数は LinearAlgebra パッケージの一部ですから、with(LinearAlgebra) を実行した後にのみ Adjoint(..) の形で使うことができます。ただし、長い形の名前 LinearAlgebra[Adjoint](..) を使えばいつでもアクセスすることができます。
例
with(LinearAlgebra): A1 := <<9,4,1>|<1,3,-1>|<0,8,1>>: C1 := Adjoint(A1, outputoptions=[datatype=float]);
A1 . C1;
Determinant(A1);
A2 := <<a,2*a>|<3,-a>>: C2 := Adjoint(A2);
A2 . C2;
Determinant(A2);
参照
Matrix, LinearAlgebra[IdentityMatrix], LinearAlgebra[Determinant], LinearAlgebra[Dimensions]
Download Help Document