summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/matrixOperations/includes/matrix.h
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-07-07 14:28:14 +0530
committerAbhinav Dronamraju2017-07-07 14:28:14 +0530
commit18de8c65454af3b40d4cd669a14772f5821ae8e5 (patch)
treea64b57d97b5958e5e7d63807225f76d5536d01ba /2.3-1/src/c/matrixOperations/includes/matrix.h
parent8f36f58ec0b68efc1cf671631c03d11edc866d94 (diff)
downloadScilab2C-18de8c65454af3b40d4cd669a14772f5821ae8e5.tar.gz
Scilab2C-18de8c65454af3b40d4cd669a14772f5821ae8e5.tar.bz2
Scilab2C-18de8c65454af3b40d4cd669a14772f5821ae8e5.zip
matrix function added
Diffstat (limited to '2.3-1/src/c/matrixOperations/includes/matrix.h')
-rw-r--r--2.3-1/src/c/matrixOperations/includes/matrix.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/2.3-1/src/c/matrixOperations/includes/matrix.h b/2.3-1/src/c/matrixOperations/includes/matrix.h
new file mode 100644
index 00000000..e47afa56
--- /dev/null
+++ b/2.3-1/src/c/matrixOperations/includes/matrix.h
@@ -0,0 +1,31 @@
+/* Copyright (C) 2016 - 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: Abhinav Dronamraju
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
+
+#ifndef __MATRIX_H__
+#define __MATRIX_H__
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void dmatrixa(double* , int , int , int , int , double*);
+void smatrixa( float* , int , int , int , int , float*);
+
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif /*__MATRIX_H__*/