diff options
author | torset | 2008-12-04 11:01:21 +0000 |
---|---|---|
committer | torset | 2008-12-04 11:01:21 +0000 |
commit | eb8e72e45a079fe698286c124c9e8e6e758ca025 (patch) | |
tree | 3c7f5a26b1d76940f305641cac58e00b97129f35 /src/signalProcessing/includes | |
parent | 62eb0a54cd3a79f0b04ed5bc124b770fbe23c248 (diff) | |
download | scilab2c-eb8e72e45a079fe698286c124c9e8e6e758ca025.tar.gz scilab2c-eb8e72e45a079fe698286c124c9e8e6e758ca025.tar.bz2 scilab2c-eb8e72e45a079fe698286c124c9e8e6e758ca025.zip |
Add conv.h
Diffstat (limited to 'src/signalProcessing/includes')
-rw-r--r-- | src/signalProcessing/includes/conv.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/signalProcessing/includes/conv.h b/src/signalProcessing/includes/conv.h new file mode 100644 index 00000000..e23c15d9 --- /dev/null +++ b/src/signalProcessing/includes/conv.h @@ -0,0 +1,33 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008 - INRIA - Arnaud TORSET + * + * 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 __CONV_H__ +#define __CONV_H__ + +#include <math.h> +#include <malloc.h> +#include "floatComplex.h" +#include "doubleComplex.h" +#include "multiplication.h" +#include "ifft.h" +#include "fft.h" + + +void sconva(float *in1, int size1, float *in2,int size2, float *out); + +void dconva(double *in1, int size1, double *in2,int size2, double *out); + +void cconva(floatComplex *in1, int size1, floatComplex *in2,int size2, floatComplex *out); + +void zconva(doubleComplex *in1, int size1, doubleComplex *in2,int size2, doubleComplex *out); + +#endif /* !__CONV_H__ */ |