LU
Catalog >
The LU factorization algorithm uses partial
pivoting with row interchanges.
M
mat►list()
Catalog >
mat►list(Matrix) ⇒ list
Returns a list filled with the elements in
Matrix. The elements are copied from
Matrix row by row.
Note: You can insert this function from the
computer keyboard by typing mat@>list
(...).
max()
Catalog >
max(Expr1, Expr2) ⇒ expression
max(List1, List2) ⇒ list
max(Matrix1, Matrix2) ⇒ matrix
Returns the maximum of the two
arguments. If the arguments are two lists
or matrices, returns a list or matrix
containing the maximum value of each pair
of corresponding elements.
max(List) ⇒ expression
Returns the maximum element in list.
max(Matrix1) ⇒ matrix
Returns a row vector containing the
maximum element of each column in
Matrix1.
Alphabetical Listing 109