49 void eigen_hermv(
int size,std::complex<double> *A,
double *eval,std::complex<double> *evec);
void cplx_matrix_inverse(void *a, void *x, int n)
Evaluate the inverse matrix of a complex matrix .
void cplx_sq_solve(void *a, void *b, void *x, int dim)
Solve a linear equation ax=b.
void eigen_hermv(int size, std::complex< double > *A, double *eval, std::complex< double > *evec)
Evaluate the eigen set of a given Hermitian matrix .
void linalg_matrix_inverse(double *a, double *x, int n)
Evaluate the inverse matrix of a real matrix .
void real_sq_solve(double *ad, double *bd, double *xd, int dim)
Solve a linear equation ax=b.
void cplx_sq_solve_many(void *a, void *b, void *x, int dim, int d)
Solve a linear equation .