summaryrefslogtreecommitdiff
path: root/modules/arnoldi/includes/eigs.h
diff options
context:
space:
mode:
authorShashank2017-05-29 12:40:26 +0530
committerShashank2017-05-29 12:40:26 +0530
commit0345245e860375a32c9a437c4a9d9cae807134e9 (patch)
treead51ecbfa7bcd3cc5f09834f1bb8c08feaa526a4 /modules/arnoldi/includes/eigs.h
downloadscilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.gz
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.bz2
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.zip
CMSCOPE changed
Diffstat (limited to 'modules/arnoldi/includes/eigs.h')
-rwxr-xr-xmodules/arnoldi/includes/eigs.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/modules/arnoldi/includes/eigs.h b/modules/arnoldi/includes/eigs.h
new file mode 100755
index 000000000..865e6bcb2
--- /dev/null
+++ b/modules/arnoldi/includes/eigs.h
@@ -0,0 +1,56 @@
+/*
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2011 - Scilab Enterprises - Adeline CARNIS
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ */
+/*--------------------------------------------------------------------------*/
+#ifndef __EIGS_H__
+#define __EIGS_H__
+#include "doublecomplex.h"
+
+
+/**
+ * @TODO add comment
+ *
+ * @param AR
+ * @param AC
+ * @param N
+ * @param Acomplex
+ * @param Asym
+ * @param B
+ * @param BC
+ * @param Bcomplex
+ * @param matB
+ * @param nev
+ * @param SIGMA
+ * @param which
+ * @param maxiter
+ * @param tol
+ * @param NCV
+ * @param RESID
+ * @param RESIDC
+ * @param INFO
+ * @param cholB
+ * @param INFO_EUPD
+ * @param eigenvalue
+ * @param eigenvector
+ * @param eigenvalueC
+ * @param eigenvectorC
+ * @param RVEC
+ * @return <ReturnValue>
+ */
+int eigs(double *AR, doublecomplex *AC, int N, int Acomplex, int Asym,
+ double* B, doublecomplex* BC, int Bcomplex, int matB, int nev,
+ doublecomplex SIGMA, char* which, double* maxiter, double* tol,
+ double* NCV, double* RESID, doublecomplex* RESIDC, int* INFO,
+ double* cholB, int INFO_EUPD, double* eigenvalue, double* eigenvector,
+ doublecomplex* eigenvalueC, doublecomplex* eigenvectorC, int RVEC);
+
+#endif /* __EIGS_H__ */
+/*--------------------------------------------------------------------------*/