diff options
Diffstat (limited to 'src/signalProcessing/includes/ifft.h')
-rw-r--r-- | src/signalProcessing/includes/ifft.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/signalProcessing/includes/ifft.h b/src/signalProcessing/includes/ifft.h new file mode 100644 index 00000000..3ba39485 --- /dev/null +++ b/src/signalProcessing/includes/ifft.h @@ -0,0 +1,28 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Allan SIMON + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#ifndef __IFFT_H__ +#define __IFFT_H__ + +#include <math.h> +#include "floatComplex.h" +#include "doubleComplex.h" +#include "blas.h" +#include "lapack.h" +#include "fft_internal.h" + +void zifftma ( doubleComplex* in , int rows, int cols, doubleComplex* out); +void cifftma ( floatComplex* in , int rows, int cols, floatComplex* out); + + +#endif /* !__IFFT_H__ */ + |