From db464f35f5a10b58d9ed1085e0b462689adee583 Mon Sep 17 00:00:00 2001 From: Siddhesh Wani Date: Mon, 25 May 2015 14:46:31 +0530 Subject: Original Version --- src/c/signalProcessing/interfaces/int_cepstrum.h | 34 +++++ src/c/signalProcessing/interfaces/int_convol.h | 153 ++++++++++++++++++++ src/c/signalProcessing/interfaces/int_fft.h | 71 +++++++++ src/c/signalProcessing/interfaces/int_fftshift.h | 51 +++++++ src/c/signalProcessing/interfaces/int_hilbert.h | 26 ++++ src/c/signalProcessing/interfaces/int_ifft.h | 52 +++++++ src/c/signalProcessing/interfaces/int_lev.h | 53 +++++++ src/c/signalProcessing/interfaces/int_levin.h | 60 ++++++++ src/c/signalProcessing/interfaces/int_lpc2cep.h | 27 ++++ src/c/signalProcessing/interfaces/int_xcorr.h | 176 +++++++++++++++++++++++ 10 files changed, 703 insertions(+) create mode 100644 src/c/signalProcessing/interfaces/int_cepstrum.h create mode 100644 src/c/signalProcessing/interfaces/int_convol.h create mode 100644 src/c/signalProcessing/interfaces/int_fft.h create mode 100644 src/c/signalProcessing/interfaces/int_fftshift.h create mode 100644 src/c/signalProcessing/interfaces/int_hilbert.h create mode 100644 src/c/signalProcessing/interfaces/int_ifft.h create mode 100644 src/c/signalProcessing/interfaces/int_lev.h create mode 100644 src/c/signalProcessing/interfaces/int_levin.h create mode 100644 src/c/signalProcessing/interfaces/int_lpc2cep.h create mode 100644 src/c/signalProcessing/interfaces/int_xcorr.h (limited to 'src/c/signalProcessing/interfaces') diff --git a/src/c/signalProcessing/interfaces/int_cepstrum.h b/src/c/signalProcessing/interfaces/int_cepstrum.h new file mode 100644 index 00000000..af1991ba --- /dev/null +++ b/src/c/signalProcessing/interfaces/int_cepstrum.h @@ -0,0 +1,34 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET + * + * 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 + * + */ + +/* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ + +#ifndef __INT_CEPSTRUM_H__ +#define __INT_CEPSTRUM_H__ + +#define s0cepstrums0(in) scepstrums(in) + +#define d0cepstrumd0(in) dcepstrums(in) + +#define c0cepstrumc0(in) ccepstrums(in) + +#define z0cepstrumz0(in) zcepstrums(in) + +#define s2cepstrums2(in,size,out) scepstruma(in, size[0]*size[1], out) + +#define d2cepstrumd2(in,size,out) dcepstruma(in, size[0]*size[1], out) + +#define c2cepstrumc2(in,size,out) ccepstruma(in, size[0]*size[1], out) + +#define z2cepstrumz2(in,size,out) zcepstruma(in, size[0]*size[1], out) + +#endif /* !__INT_CEPSTRUM_H__ */ diff --git a/src/c/signalProcessing/interfaces/int_convol.h b/src/c/signalProcessing/interfaces/int_convol.h new file mode 100644 index 00000000..80ec65b1 --- /dev/null +++ b/src/c/signalProcessing/interfaces/int_convol.h @@ -0,0 +1,153 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET + * + * 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 + * + */ + +/* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ + +#ifndef __INT_CONVOL_H__ +#define __INT_CONVOL_H__ + + +/* Scalar - Scalar */ + +#define s0s0convols0(in1,in2) in1*in2 + +#define d0d0convold0(in1,in2) in1*in2 + +#define c0c0convolc0(in1,in2) cmuls(in1,in2) + +#define z0z0convolz0(in1,in2) zmuls(in1,in2) + +#define s0c0convolc0(in1,in2) cmuls(FloatComplex(in1,0),in2) + +#define d0z0convolz0(in1,in2) zmuls(DoubleComplex(in1,0),in2) + +#define c0s0convolc0(in1,in2) cmuls(in1,FloatComplex(in2,0)) + +#define z0d0convolz0(in1,in2) zmuls(in1,DoubleComplex(in2,0)) + +/* Scalar - Matrix */ + +#define s0s2convols2(in1,in2,size,out) {int i;\ + for (i=0;i