7 #ifndef LINEAR_ALGEBRA_HEAD 8 #define LINEAR_ALGEBRA_HEAD 13 void linSolveComplex (
int,
double complex*,
double complex*,
double complex*);
14 void roots (
int,
double*,
double complex*);
15 void svd (
int,
double*,
double*,
double*,
double*);
void linSolveComplex(int, double complex *, double complex *, double complex *)
Solves the complex linear system Ax = B.
void roots(int, double *, double complex *)
Polynomial root finding function.
void svd(int, double *, double *, double *, double *)
Singular value decomposition function.
void getInverseComplex(int, double complex *)
Interface function to LAPACK matrix inversion subroutine.