NuTo
Numerics Tool
dlapack.h
Go to the documentation of this file.
1 
2 // header for lapack routines
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
18 void dpotri_(const char* UPLO, const int* N, double* A, const int* LDA, int* INFO);
19 
34 void dpotrf_(const char* UPLO, const int* N, double* A, const int* LDA, int* INFO);
35 
49 void dpotrs_(const char* UPLO, const int* N, const int* NRHS, const double* A, const int* LDA, double* B,
50  const int* LDB, int* INFO);
51 
52 #ifdef __cplusplus
53 }
54 #endif
void dpotrf_(const char *UPLO, const int *N, double *A, const int *LDA, int *INFO)
DPOTRF computes the Cholesky factorization of a real symmetric positive definite matrix A...
void dpotri_(const char *UPLO, const int *N, double *A, const int *LDA, int *INFO)
DPOTRI computes the inverse of a real symmetric positive definite matrix A using the Cholesky factori...
void dpotrs_(const char *UPLO, const int *N, const int *NRHS, const double *A, const int *LDA, double *B, const int *LDB, int *INFO)
DPOTRS solves a system of linear equations A*X = B with a symmetric positive definite matrix A using ...
Eigen::MatrixXd N(const Eigen::VectorXd &shapeFunctions, int numNodes, int dim)
Definition: Matrix.h:8
int A
Definition: TimeIntegrationResultForce.py:7