summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/includes
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-07-07 14:28:14 +0530
committerAbhinav Dronamraju2017-07-07 14:28:14 +0530
commit6c064ab15d76329ac3dfbee127e6b448a4c6f458 (patch)
tree5cbfecce11e56ff4dc8f3c00d727aef42a30fbf8 /src/c/matrixOperations/includes
parent01508f707b01890e6c214a0fceb90c6a3db5cf57 (diff)
downloadScilab2C_fossee_old-6c064ab15d76329ac3dfbee127e6b448a4c6f458.tar.gz
Scilab2C_fossee_old-6c064ab15d76329ac3dfbee127e6b448a4c6f458.tar.bz2
Scilab2C_fossee_old-6c064ab15d76329ac3dfbee127e6b448a4c6f458.zip
matrix function added
Diffstat (limited to 'src/c/matrixOperations/includes')
-rw-r--r--src/c/matrixOperations/includes/matrix.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/c/matrixOperations/includes/matrix.h b/src/c/matrixOperations/includes/matrix.h
new file mode 100644
index 0000000..e47afa5
--- /dev/null
+++ b/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__*/