Handbook
Glossary
non-square-determinant ( m n -- * )
Extra matrix operations
Prev:
negative-power-matrix ( m n -- * )
Next:
undefined-inverse ( m n r -- * )
Vocabulary
math
.
matrices
.
extras
Inputs
m
an
integer
n
an
integer
Outputs
None
Word description
Throws a
non-square-determinant
error.
Error description
determinant
was used with a non-square matrix whose dimensions are
m x n
. It is not generally possible to find the determinant of a non-square matrix.
Definition
IN:
math.matrices.extras
ERROR:
non-square-determinant
m n
;
Methods
USING:
accessors
formatting
kernel
math.matrices.extras
summary
;
M:
non-square-determinant
summary
[
m>>
]
[
n>>
]
bi
"non-square %s x %s matrix has no determinant"
sprintf
;