Skip to content

Adjugate

Adjugate(matrix)

calculate the adjugate matrix Inverse(matrix)*Det(matrix)

See:

Examples

The 3 × 3 matrix example from Wikipedia:

>> Adjugate({{-3,2,-5}, {-1,0,-2}, {3,-4,1}})
{{-8,18,-4},
{-5,12,-1},
{4,-6,2}}

Implementation status

  • ☑ - partially implemented

Github