Student[LinearAlgebra]
GaussianElimination
perform Gaussian elimination on a Matrix
ReducedRowEchelonForm
perform Gauss-Jordan elimination on a Matrix
Calling Sequence
Parameters
Description
Examples
GaussianElimination(A)
ReducedRowEchelonForm(A)
A
-
Matrix
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.
See Also
LinearAlgebra[GaussianElimination]
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