summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/linearAlgebra/includes/sva.h
diff options
context:
space:
mode:
authorSiddhesh Wani2017-06-21 15:15:46 +0530
committerGitHub2017-06-21 15:15:46 +0530
commitfb56458ea04849e82f41d9c0f5c817a22839f848 (patch)
treef504c068fe6763f6cf32735e9107cc357c2655a7 /2.3-1/src/c/linearAlgebra/includes/sva.h
parent0051253bc224286c118c080c79eaed5bf611bd35 (diff)
parent33e4ef72e7f712eb34a0a87e7b45fcca7d08393c (diff)
downloadScilab2C-fb56458ea04849e82f41d9c0f5c817a22839f848.tar.gz
Scilab2C-fb56458ea04849e82f41d9c0f5c817a22839f848.tar.bz2
Scilab2C-fb56458ea04849e82f41d9c0f5c817a22839f848.zip
Merge pull request #9 from sandeepgupta007/master
Linear Algebra - Functions Updated
Diffstat (limited to '2.3-1/src/c/linearAlgebra/includes/sva.h')
-rw-r--r--2.3-1/src/c/linearAlgebra/includes/sva.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/2.3-1/src/c/linearAlgebra/includes/sva.h b/2.3-1/src/c/linearAlgebra/includes/sva.h
new file mode 100644
index 00000000..ea628a32
--- /dev/null
+++ b/2.3-1/src/c/linearAlgebra/includes/sva.h
@@ -0,0 +1,29 @@
+ /* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ 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-en.txt
+ Author: Sandeep Gupta
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+ */
+
+#ifndef __SVA_H__
+#define __SVA_H__
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void dsvaa(int ninp,double *in1,int row,int col,double in2,double *out1, \
+ double *out2,double *out3);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif /*__SVA_H__*/
+