00001 #ifndef _LAPACK_H
00002 #define _LAPACK_H
00003
00004
00005
00006 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009
00010
00011 void dgesv_(int *n, int *nrhs, double *A, int *lda, int *piv, double *B,
00012 int *ldb, int *info);
00013
00014 void dgetrf_(int *m, int *n, double *A, int *lda, int *piv, int *info);
00015
00016
00017 void dgetrs_(char *trans, int *n, int *nrhs, double *A, int *lda, int *piv,
00018 double *B, int *ldb, int *info);
00019
00020 #ifdef __cplusplus
00021 }
00022 #endif
00023
00024 #endif