summaryrefslogtreecommitdiff
path: root/src/signalProcessing/includes/ifft.h
diff options
context:
space:
mode:
authorcornet2009-04-22 08:28:41 +0000
committercornet2009-04-22 08:28:41 +0000
commit088ab6f0fb18541245ef326f87d9150d54c6e1dc (patch)
tree8209f2be3edd8e7aaac641bdb15c59bdf27a7ef8 /src/signalProcessing/includes/ifft.h
parentad5856216afe2447cc60005db1f30ebc97bf1dd6 (diff)
downloadscilab2c-088ab6f0fb18541245ef326f87d9150d54c6e1dc.tar.gz
scilab2c-088ab6f0fb18541245ef326f87d9150d54c6e1dc.tar.bz2
scilab2c-088ab6f0fb18541245ef326f87d9150d54c6e1dc.zip
add signalProcessing project
Diffstat (limited to 'src/signalProcessing/includes/ifft.h')
-rw-r--r--src/signalProcessing/includes/ifft.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/signalProcessing/includes/ifft.h b/src/signalProcessing/includes/ifft.h
index 877ea88e..6954c7f9 100644
--- a/src/signalProcessing/includes/ifft.h
+++ b/src/signalProcessing/includes/ifft.h
@@ -13,6 +13,7 @@
#ifndef __IFFT_H__
#define __IFFT_H__
+#include "dynlib_signalprocessing.h"
#include "floatComplex.h"
#include "doubleComplex.h"
@@ -22,9 +23,13 @@
#define ziffts(in) in
-void sifftma ( float* in , int rows, int cols, float* out);
+#ifdef __cplusplus
+extern "C" {
+#endif
-void difftma ( double* in , int rows, int cols, double* out);
+EXTERN_SIGPROC void sifftma ( float* in , int rows, int cols, float* out);
+
+EXTERN_SIGPROC void difftma ( double* in , int rows, int cols, double* out);
/*
** compute the inverse fast fourier transform of a vector
@@ -35,7 +40,7 @@ void difftma ( double* in , int rows, int cols, double* out);
*/
-void zifftma ( doubleComplex* in , int rows, int cols, doubleComplex* out);
+EXTERN_SIGPROC void zifftma ( doubleComplex* in , int rows, int cols, doubleComplex* out);
/*
** compute the inverse fast fourier transform of a vector
** param in : the input matrix in complex float precision
@@ -44,8 +49,11 @@ void zifftma ( doubleComplex* in , int rows, int cols, doubleComplex* out);
** param out : the transformed matrix in complex float precision
*/
-void cifftma ( floatComplex* in , int rows, int cols, floatComplex* out);
+EXTERN_SIGPROC void cifftma ( floatComplex* in , int rows, int cols, floatComplex* out);
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
#endif /* !__IFFT_H__ */