GaussianElimination - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Student[LinearAlgebra]

  

GaussianElimination

  

perform Gaussian elimination on a Matrix

  

ReducedRowEchelonForm

  

perform Gauss-Jordan elimination on a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

GaussianElimination(A)

ReducedRowEchelonForm(A)

Parameters

A

-

Matrix

Description

• 

The GaussianElimination(A) command performs Gaussian elimination on the Matrix A and returns the upper triangular factor U with the same dimensions as A.

  

This command is equivalent to calling LUDecomposition with the output=['U'] option.

• 

The ReducedRowEchelonForm(A) command performs Gauss-Jordan elimination on the Matrix A and returns the unique reduced row echelon form R of A.

  

This command is equivalent to calling LUDecomposition with the output=['R'] option.

Examples

(1)

(2)

(3)

(4)

See Also

LinearAlgebra[GaussianElimination]

Student[LinearAlgebra]

Student[LinearAlgebra][AddRow]

Student[LinearAlgebra][GaussianEliminationTutor]

Student[LinearAlgebra][GaussJordanEliminationTutor]

Student[LinearAlgebra][LinearSolve]

Student[LinearAlgebra][LinearSolveTutor]

Student[LinearAlgebra][LUDecomposition]

Student[LinearAlgebra][MultiplyRow]

Student[LinearAlgebra][SwapRow]

 


Download Help Document