n/m ( n m -- m )
Matrix operations

Prev:n*m ( n m -- m )
Next:m+ ( m1 m2 -- m )


Vocabulary
math.matrices

Inputs
nan object
ma matrix


Outputs
ma matrix


Word description
Every element in the input matrix m is divided by the scalar n.

Notes
The shape of the input matrix is preserved in the output.
This word is the swapped variant of m/n.
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:
/ ( x y -- z )


Examples
USING: kernel math.matrices prettyprint ; 2 { { 4 5 } { 2 1 } } n/m .
{ { 1/2 2/5 } { 1 2 } }


Definition