Do you know whether boost has functions that can calculate the determinant and the inversion of a complex matrix? The matrix dimension isn't large (less than 50).
Inversion: Input: matrix M = A +i*B with A,B two real matrices of dimension (n x n) with n <50.
Output:
- Inversion: matrix N = C + iD with C,D two real matrices of dimension (n x n) such that: (A +iB)^T (C+ i*D) = I (I: the identity matrix)
- Determinant: det(A+iB)
I googled but didn't succeed.
Thank you in advance.