cmake introduction
A short example project for the CMake build system
|
Namespace for core components. More...
Classes | |
class | Matrix |
A dense quadratic matrix of arbitrary size. More... | |
class | Vector |
A vector of arbitrary size. More... | |
Functions | |
int | solve_linear_system (Matrix< double > &A, Vector< double > &rhs) |
void | dgesv_wrap (int *N, int *NRHS, double *A, int *LDA, int *IPIV, double *B, int *LDB, int *INFO) |
Wrapper function around around dgesv_. More... | |
Namespace for core components.
Detailed description here.
void core::dgesv_wrap | ( | int * | N, |
int * | NRHS, | ||
double * | A, | ||
int * | LDA, | ||
int * | IPIV, | ||
double * | B, | ||
int * | LDB, | ||
int * | INFO | ||
) |
Wrapper function around around dgesv_.
Definition at line 30 of file lapack_wrapper.h.