clvcooke / MatrixMath

A from scratch implementation of basic matrix manipulation and operations in C++
0 stars 2 forks source link

Inverse Matrix #6

Closed clvcooke closed 9 years ago

clvcooke commented 9 years ago

Write a function within the Matrix class which returns the inverse of the Matrix. I will leave failure behaviour up to the person who implements it.

RowanFerrabee commented 9 years ago

We can just call the det function along with the cof function and the transpose function

clvcooke commented 9 years ago

Yep, it should be pretty simple