114 Alphabetical Listing
mirr()
Catalog >
Note: See also irr(), page 91.
mod()
Catalog >
mod(Expr1, Expr2) ⇒ expression
mod(List1, List2) ⇒ list
mod(Matrix1, Matrix2) ⇒ matrix
Returns the first argument modulo the
second argument as defined by the
identities:
mod(x,0) = x
mod(x,y) = x − y floor(x/y)
When the second argument is non-zero, the
result is periodic in that argument. The
result is either zero or has the same sign as
the second argument.
If the arguments are two lists or two
matrices, returns a list or matrix containing
the modulo of each pair of corresponding
elements.
Note: See also remain(), page 146
mRow()
Catalog >
mRow(Expr, Matrix1, Index) ⇒ matrix
Returns a copy of Matrix1 with each
element in row Index of Matrix1 multiplied
by Expr.
mRowAdd()
Catalog >
mRowAdd(Expr, Matrix1, Index1, Index2)
⇒ matrix
Returns a copy of Matrix1 with each
element in row Index2 of Matrix1 replaced
with:
Expr • row Index1 + row Index2