with-matrix ( matrix quot -- ) (original) (raw)

with-matrix ( matrix quot -- )

Vocabulary
math.matrices.elimination

Inputs

matrix an object
quot an object

Outputs
None

Definition

USING: kernel namespaces ;

IN: math.matrices.elimination

: with-matrix ( matrix quot -- )
matrix swap [ matrix get ] compose with-variable ; inline