Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Student[LinearAlgebra][LUDecomposition] - compute the PLU or PLU1R decomposition of a Matrix
Calling Sequence
LUDecomposition(A, out, options)
Parameters
A
-
Matrix
out
(optional) equation of the form output = obj where obj is one of 'P', 'L', 'U', 'U1', or 'R', or a list consisting of one or more of these names; selects result objects to compute
options
(optional) parameters; for a complete list, see LinearAlgebra[LUDecomposition]
Description
The LUDecomposition command computes a PLU decomposition or a modified PLU1R decomposition of the Matrix A.
Depending on what is included in the output option (out), an expression sequence containing one or more of the factors P, L, U, U1, and R can be returned. The objects are returned in the same order as specified in the output list.
Note: Either U or the pair U1 and R may be returned, but not both.
The LUDecomposition(A) calling sequence is equivalent to LUDecomposition(A, output=['P','L','U']). This LU decomposition generates a square unit lower triangular L factor and an upper triangular factor U with the same dimensions as A so that . The Matrix P is a permutation Matrix.
The PLU1R decomposition is achieved by using LUDecomposition(A, output=['P','L','U1','R']). This further factors U into where U1 is square upper triangular factor and R is the unique reduced row echelon form of the Matrix A. In this case, .
The output option (out) determines the content of the returned expression sequence.
Examples
To reduce a Matrix using Gaussian elimination, specify the 'U' object:
To reduce a Matrix using Gauss-Jordan elimination, specify the 'R' object:
See Also
LinearAlgebra[LUDecomposition], Student[LinearAlgebra], Student[LinearAlgebra][GaussianElimination], Student[LinearAlgebra][ReducedRowEchelonForm]
References
For more information on the P*L*U1*R decomposition see:
Corless, Robert M., and Jeffrey, David J. "The Turing Factorization of a Rectangular Matrix." Sigsam Bulletin, Vol. 31 no. 3. (September 1997): 20-28.
This paper names the U1 factor U.
Download Help Document