From 4c15ad2baa61540f751193b96edb47676662a165 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 28 Oct 2008 08:22:44 +0000 Subject: added a missing header --- src/signalProcessing/includes/ifft.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/signalProcessing/includes/ifft.h (limited to 'src/signalProcessing/includes/ifft.h') 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 +#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__ */ + -- cgit