Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 619 Bytes

File metadata and controls

34 lines (19 loc) · 619 Bytes

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