Vocabularymath.
matrices.
eliminationInputsOutputsWord descriptionComputes the multiplicative inverse of a matrix. Assuming the matrix is invertible.
ExamplesA matrix multiplied by its inverse is the identity matrix.
USING: kernel math.matrices prettyprint ;
FROM: math.matrices.elimination => inverse ;
{ { 3 4 } { 7 9 } } dup inverse mdot 2 <identity-matrix> = .
t
Definition