accelerInt  v0.1
linear-algebra.h
Go to the documentation of this file.
1 
7 #ifndef LINEAR_ALGEBRA_HEAD
8 #define LINEAR_ALGEBRA_HEAD
9 
10 #include <complex.h>
11 
12 void getInverseComplex (int, double complex*);
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*);
16 
17 #endif
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.