diff options
author | ttt | 2019-10-05 23:13:58 +0530 |
---|---|---|
committer | ttt | 2019-10-05 23:13:58 +0530 |
commit | 999122e511f5f2cabdff0bb26908db4e57dfcee2 (patch) | |
tree | 5740956cd3a34f60dea8f918dd78f516f410c860 /thirdparty/linux/include | |
parent | 5cbdabe67f771f9e5a997f9b50dbd04c6222f183 (diff) | |
download | fossee-scilab-octave-toolbox-999122e511f5f2cabdff0bb26908db4e57dfcee2.tar.gz fossee-scilab-octave-toolbox-999122e511f5f2cabdff0bb26908db4e57dfcee2.tar.bz2 fossee-scilab-octave-toolbox-999122e511f5f2cabdff0bb26908db4e57dfcee2.zip |
complex numbers enabled
Diffstat (limited to 'thirdparty/linux/include')
-rw-r--r-- | thirdparty/linux/include/fun.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/thirdparty/linux/include/fun.h b/thirdparty/linux/include/fun.h index abc5e17..ac0c166 100644 --- a/thirdparty/linux/include/fun.h +++ b/thirdparty/linux/include/fun.h @@ -17,8 +17,12 @@ extern "C" int n_in_cols; int n_out_rows; int n_out_cols; - void* in_data; - void* out_data; + int is_in_cmplx; + int is_out_cmplx; + void* in_data_real; + void* in_data_img; + void* out_data_real; + void* out_data_img; }FUNCARGS; typedef struct { |