mmin ( m -- n )


Vocabulary
math.matrices

Inputs
ma matrix


Outputs
nan object


Word description
Determine the minimum value of the matrix.

Notes
This word is intended for use with "flat" (2-dimensional) matrices.
This word assumes that elements of the input matrix are compatible with the following words:
min ( obj1 obj2 -- obj )


Examples
USING: math.matrices prettyprint ; { { 5 9 } { 15 17 } } mmin .
5


Definition