diff options
author | simon | 2008-10-28 08:22:44 +0000 |
---|---|---|
committer | simon | 2008-10-28 08:22:44 +0000 |
commit | 4c15ad2baa61540f751193b96edb47676662a165 (patch) | |
tree | af256e1ebd01e9509a06e8b65ff2a56599c041cd | |
parent | b8786359e2bd079ccfe2166bc22b6304cc4ccd02 (diff) | |
download | scilab2c-4c15ad2baa61540f751193b96edb47676662a165.tar.gz scilab2c-4c15ad2baa61540f751193b96edb47676662a165.tar.bz2 scilab2c-4c15ad2baa61540f751193b96edb47676662a165.zip |
added a missing header
-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__ */ + |