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[GaussianElimination] - 行列にガウス消去法を実行します
LinearAlgebra[ReducedRowEchelonForm] - 行列にガウス-ジョルダン消去法を実行します
使い方
GaussianElimination(A, m, outopts)
ReducedRowEchelonForm(A)
パラメータ
A - 行列
m - (オプション) method = name の形の等式。ここで、name は、Aを分解するために使用する方法で、'GaussianElimination', あるいは 'FractionFree' のいずれかです。 outopts - (オプション) outputoptions = list の形の等式。ここで、list は、結果のコンストラクタ、言い換えると、結果のオブジェクトに対するコンストラクタ、に渡すオプションを含みます。
説明
コマンド GaussianElimination(A) は行列 A にガウス消去法を実行して A と同じ次数の上三角要素 U を返します。
この関数は output=['U'] オプションを付けて LinearAlgebra[LUDecomposition] を呼び出すことと同じことです。
コマンド ReducedRowEchelonForm(A) は行列 A にガウス-ジョルダン消去を実行し A の一意的な被約行階段形 R を返します。
この関数は output=['R'] オプションを付けて LinearAlgebra[LUDecomposition] を呼び出すことと同じです。
この関数は LinearAlgebra パッケージの一部ですから、コマンド with(LinearAlgebra) を実行した後にのみ GaussianElimination(..) の形で使うことができます。ただし、コマンドの長い形 LinearAlgebra[GaussianElimination](..) を使えば、いつでもアクセスすることができます。
例
with(LinearAlgebra): A := <<8,3,-1,-5>|<4,-5,0,-2>|<-5,8,3,-1>|<-5,5,-4,-9>>;
b := <4,0,-8,-5>;
GaussianElimination(A);
GaussianElimination(A,'method'='FractionFree');
ReducedRowEchelonForm(<A|b>);
参照
Matrix, Vector, LinearAlgebra[LUDecomposition], type[BooleanOpt],
Download Help Document