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