find-row ( row# quot -- i elt ) (original) (raw)

find-row ( row# quot -- i elt )

Vocabulary
math.matrices.elimination

Inputs

row# an object
quot an object

Outputs

i an object
elt an object

Definition

USING: kernel sequences ;

IN: math.matrices.elimination

: find-row ( row# quot -- i elt ) [ rows-from ] dip find ;
inline