summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/includes
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-07-07 15:11:33 +0530
committerAbhinav Dronamraju2017-07-07 15:11:33 +0530
commitd63c259a847a981daf4922be033c10b0a3f492ed (patch)
treef6e165ba93e17617c18677a0aa46d309dd1627a1 /src/c/matrixOperations/includes
parentd9def244c92ecba1ad8c3ef38d7308b9381fbb97 (diff)
downloadScilab2C_fossee_old-d63c259a847a981daf4922be033c10b0a3f492ed.tar.gz
Scilab2C_fossee_old-d63c259a847a981daf4922be033c10b0a3f492ed.tar.bz2
Scilab2C_fossee_old-d63c259a847a981daf4922be033c10b0a3f492ed.zip
Float complex for matrix reshape
Diffstat (limited to 'src/c/matrixOperations/includes')
-rw-r--r--src/c/matrixOperations/includes/matrix.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/c/matrixOperations/includes/matrix.h b/src/c/matrixOperations/includes/matrix.h
index af9e09e..dbb0e22 100644
--- a/src/c/matrixOperations/includes/matrix.h
+++ b/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" */