diff options
author | Abhinav Dronamraju | 2017-07-07 15:11:33 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-07 15:11:33 +0530 |
commit | 77da5591c712d5f5819afb4eeb503435336d0741 (patch) | |
tree | 3c05ddfef5c17c72c9fcfd1e16469743cebbf317 /2.3-1/src/c/matrixOperations/includes/matrix.h | |
parent | a8b6361c5548c46fbc0722410322163cb38ab073 (diff) | |
download | Scilab2C-77da5591c712d5f5819afb4eeb503435336d0741.tar.gz Scilab2C-77da5591c712d5f5819afb4eeb503435336d0741.tar.bz2 Scilab2C-77da5591c712d5f5819afb4eeb503435336d0741.zip |
Float complex for matrix reshape
Diffstat (limited to '2.3-1/src/c/matrixOperations/includes/matrix.h')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/includes/matrix.h | 4 |
1 files changed, 3 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 af9e09e5..dbb0e223 100644 --- a/2.3-1/src/c/matrixOperations/includes/matrix.h +++ b/2.3-1/src/c/matrixOperations/includes/matrix.h @@ -15,7 +15,7 @@ #define __MATRIX_H__ #include "types.h" -#include "uint16.h" +#include "doubleComplex.h" #ifdef __cplusplus extern "C" { @@ -24,6 +24,8 @@ 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); +void zmatrixa(doubleComplex *, int , int , int , int ,doubleComplex *); + #ifdef __cplusplus } /* extern "C" */ |