// This file contains a set of wrapper functions that are linked to the corresponding functions in CLAPACK #include //Solve matrix inverse. void LINALG_inverse(std::complex* A, int N); //Solve matrix multiplication. C = A * B. void LINALG_zgemm( const int M, //A(M*K) B(K*N) const int N, const int K, std::complex* A, const int LDA, //=K std::complex* B, const int LDB, //=N std::complex* C, const int LDC); //=columns of C.