cmake introduction
A short example project for the CMake build system
Namespaces | Functions
lapack_wrapper.h File Reference
#include "config.h"
Include dependency graph for lapack_wrapper.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 core
 Namespace for core components.
 

Functions

void dgesv_ (int *N, int *NRHS, double *A, int *LDA, int *IPIV, double *B, int *LDB, int *INFO)
 Function provided by LAPACK to solve a (dense) linear system. More...
 
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_. More...
 

Function Documentation

◆ dgesv_()

void dgesv_ ( int *  N,
int *  NRHS,
double *  A,
int *  LDA,
int *  IPIV,
double *  B,
int *  LDB,
int *  INFO 
)

Function provided by LAPACK to solve a (dense) linear system.

See also
http://www.netlib.org/lapack/explore-html/d8/d72/dgesv_8f.html