Vocabularymath.
matrices.
extrasInputsOutputsWord descriptionMultiply the input matrix by the inverse (
recip) of its
determinant.
NotesExamplesUSING: math.matrices.extras prettyprint ;
{
{ -14 0 -13 7 }
{ -4 11 7 -12 }
{ -3 2 9 -14 }
{ 3 -5 10 -2 }
} m*1/det .
{
{ 7/6855 0 13/13710 -7/13710 }
{ 2/6855 -11/13710 -7/13710 2/2285 }
{ 1/4570 -1/6855 -3/4570 7/6855 }
{ -1/4570 1/2742 -1/1371 1/6855 }
}
Definition