aboutsummaryrefslogtreecommitdiff
path: root/include/mylapack.h
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2013-10-18 15:48:59 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2013-10-18 15:48:59 +0200
commit6d064658f8ae7ca0f42fef6dcc7f896144e9637b (patch)
treea41e8793f71f637b68f862220ae5566f4537073d /include/mylapack.h
parentallow seeding of V and added documentation (diff)
downloadgensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.tar.gz
gensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.zip
restart using git
Diffstat (limited to 'include/mylapack.h')
-rw-r--r--include/mylapack.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/mylapack.h b/include/mylapack.h
new file mode 100644
index 0000000..4c79e0e
--- /dev/null
+++ b/include/mylapack.h
@@ -0,0 +1,11 @@
+#ifndef MYLAPACK_H
+#define MYLAPACK_H
+
+#include "globals.h"
+
+int dposv(char UPLO, int N, int NRHS, double *A, int LDA, double *B,
+ int LDB);
+int dsysv(char UPLO, int N, int NRHS, double *A, int LDA, int *IPIV,
+ double *B, int LDB, double *WORK, int LWORK);
+
+#endif