rows-except ( matrix desc -- others )
Matrix operations

Prev:rows ( seq matrix -- rows )
Next:col ( n matrix -- col )


Vocabulary
math.matrices

Inputs
matrixa matrix
descan integer or a sequence


Outputs
othersa matrix


Generic word contract
Get all the rows from matrix not described by desc.

Examples
USING: math.matrices prettyprint ; { { 2 7 12 2 } { 8 9 10 0 } { 1 3 3 5 } { 8 13 7 12 } } { 1 3 } rows-except .
{ { 2 7 12 2 } { 1 3 3 5 } }


Definition

GENERIC: rows-except ( matrix desc -- others )


Methods