Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

lapack.h

Go to the documentation of this file.
00001 #ifndef _LAPACK_H
00002 #define _LAPACK_H
00003 
00004 /* Declerations of LAPACK routines */
00005 
00006 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009 
00010 /* B <- A \ B, A <- [L,U], piv <- P where P*A = L*U */
00011 void dgesv_(int *n, int *nrhs, double *A, int *lda, int *piv, double *B, 
00012             int *ldb, int *info);
00013 /* A <- [L,U], piv <- P where P*A = L*U */
00014 void dgetrf_(int *m, int *n, double *A, int *lda, int *piv, int *info);
00015 
00016 /* B <- A \ B where A = [L,U], piv given from dgetrf_ */
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

Generated on Wed Jun 18 09:16:20 2003 for admc++ by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002