diff options
author | Abhinav Dronamraju | 2017-07-07 14:46:59 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-07 14:46:59 +0530 |
commit | a8b6361c5548c46fbc0722410322163cb38ab073 (patch) | |
tree | d1a17685ab5db4b927897569aad2e2613aef1207 /2.3-1/src/c/matrixOperations/includes | |
parent | 18de8c65454af3b40d4cd669a14772f5821ae8e5 (diff) | |
download | Scilab2C-a8b6361c5548c46fbc0722410322163cb38ab073.tar.gz Scilab2C-a8b6361c5548c46fbc0722410322163cb38ab073.tar.bz2 Scilab2C-a8b6361c5548c46fbc0722410322163cb38ab073.zip |
New data type for matrix
Diffstat (limited to '2.3-1/src/c/matrixOperations/includes')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/includes/matrix.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/2.3-1/src/c/matrixOperations/includes/matrix.h b/2.3-1/src/c/matrixOperations/includes/matrix.h index e47afa56..af9e09e5 100644 --- a/2.3-1/src/c/matrixOperations/includes/matrix.h +++ b/2.3-1/src/c/matrixOperations/includes/matrix.h @@ -15,6 +15,7 @@ #define __MATRIX_H__ #include "types.h" +#include "uint16.h" #ifdef __cplusplus extern "C" { @@ -22,7 +23,7 @@ extern "C" { void dmatrixa(double* , int , int , int , int , double*); void smatrixa( float* , int , int , int , int , float*); - +void u16matrixa(uint16 *, int , int , int , int ,uint16 *out); #ifdef __cplusplus } /* extern "C" */ |