7.10 Row-Based Algorithms
procedure
(matrix-gauss-elim M [ jordan? unitize-pivot? pivoting]) → (Values (Matrix Number) (Listof Index)) M : (Matrix Number) jordan? : Any = #f unitize-pivot? : Any = #f pivoting : (U 'first 'partial) = 'partial
If jordan? is true, row operations are done both above and below the pivot. If unitize-pivot? is true, the pivot’s row is scaled so that the pivot value is 1. When both are true, the algorithm is called Gauss-Jordan elimination, and the result matrix is in reduced row echelon form.
If pivoting is 'first, the first nonzero entry in the current column is used as the pivot. If pivoting is 'partial, the largest-magnitude nonzero entry is used, which improves numerical stability on average when M contains inexact entries.
The first return value is the result of Gaussian elimination.
The second return value is a list of indexes of columns that did not have a nonzero pivot.
See matrix-row-echelon for examples.
procedure
(matrix-row-echelon M [ jordan? unitize-pivot? pivoting]) → (Matrix Number) M : (Matrix Number) jordan? : Any = #f unitize-pivot? : Any = #f pivoting : (U 'first 'partial) = 'partial
Examples: | |||||||||||||||||||||
|
> (define B (col-matrix [8 -11 -3]))
> (define MB (matrix-augment (list M B))) eval:83:0: Type Checker: missing type for top-level
identifier;
either undefined or missing a type annotation
identifier: M10
in: B
> (matrix-col (matrix-row-echelon MB #t #t) 3) eval:84:0: MB12: unbound identifier;
also, no #%top syntax transformer is bound
in: MB12
> (matrix-solve M B) eval:85:0: Type Checker: missing type for top-level
identifier;
either undefined or missing a type annotation
identifier: M10
in: B
> (define MI (matrix-augment (list M (identity-matrix 3)))) eval:86:0: Type Checker: missing type for top-level
identifier;
either undefined or missing a type annotation
identifier: M10
in: 3
> (submatrix (matrix-row-echelon MI #t #t) (::) (:: 3 #f)) eval:87:0: MI13: unbound identifier;
also, no #%top syntax transformer is bound
in: MI13
> (matrix-inverse M) eval:88:0: Type Checker: missing type for top-level
identifier;
either undefined or missing a type annotation
identifier: M10
in: M
procedure
(matrix-lu M [fail])
→ (Values (U F (Matrix Number)) (Matrix Number)) M : (Matrix Number) fail : (-> F) = (λ () (error ...))
Because matrix-lu returns a unit lower-triangular matrix (i.e. a lower-triangular matrix with only ones on the diagonal), the decomposition is unique if it exists.
Examples: | |||||||||||||||||
|