From a555820564d9f2e95ca8c97871339d3a5a2081c3 Mon Sep 17 00:00:00 2001 From: Ankit Raj Date: Wed, 21 Jun 2017 10:26:59 +0530 Subject: Updated Scilab2C --- .../c/signalProcessing/interfaces/int_buttmag.h | 19 +++ .../c/signalProcessing/interfaces/int_cepstrum.h | 34 ++++ .../c/signalProcessing/interfaces/int_cheb1mag.h | 18 +++ .../c/signalProcessing/interfaces/int_cheb2mag.h | 18 +++ .../src/c/signalProcessing/interfaces/int_convol.h | 153 ++++++++++++++++++ .../src/c/signalProcessing/interfaces/int_ffilt.h | 18 +++ 2.3-1/src/c/signalProcessing/interfaces/int_fft.h | 71 +++++++++ .../c/signalProcessing/interfaces/int_fftshift.h | 51 ++++++ .../c/signalProcessing/interfaces/int_filt_sinc.h | 18 +++ .../c/signalProcessing/interfaces/int_fsfirlin.h | 18 +++ .../c/signalProcessing/interfaces/int_hilbert.h | 26 +++ 2.3-1/src/c/signalProcessing/interfaces/int_ifft.h | 52 ++++++ 2.3-1/src/c/signalProcessing/interfaces/int_lev.h | 53 +++++++ .../src/c/signalProcessing/interfaces/int_levin.h | 60 +++++++ .../c/signalProcessing/interfaces/int_lpc2cep.h | 27 ++++ 2.3-1/src/c/signalProcessing/interfaces/int_modk.h | 18 +++ .../src/c/signalProcessing/interfaces/int_modsn.h | 21 +++ .../src/c/signalProcessing/interfaces/int_sincd.h | 19 +++ .../src/c/signalProcessing/interfaces/int_xcorr.h | 176 +++++++++++++++++++++ .../src/c/signalProcessing/interfaces/int_zpbutt.h | 19 +++ .../src/c/signalProcessing/interfaces/int_zpch1.h | 18 +++ .../src/c/signalProcessing/interfaces/int_zpch2.h | 18 +++ 22 files changed, 925 insertions(+) create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_buttmag.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_cepstrum.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_cheb1mag.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_cheb2mag.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_convol.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_ffilt.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_fft.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_fftshift.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_filt_sinc.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_fsfirlin.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_hilbert.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_ifft.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_lev.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_levin.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_lpc2cep.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_modk.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_modsn.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_sincd.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_xcorr.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_zpbutt.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_zpch1.h create mode 100644 2.3-1/src/c/signalProcessing/interfaces/int_zpch2.h (limited to '2.3-1/src/c/signalProcessing/interfaces') diff --git a/2.3-1/src/c/signalProcessing/interfaces/int_buttmag.h b/2.3-1/src/c/signalProcessing/interfaces/int_buttmag.h new file mode 100644 index 00000000..4a33fafe --- /dev/null +++ b/2.3-1/src/c/signalProcessing/interfaces/int_buttmag.h @@ -0,0 +1,19 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + 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 + Author: Ankit Raj + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in + */ + +#ifndef __INT_BUTTMAG_H__ +#define __INT_BUTTMAG_H__ + +#define d0d0d2buttmagd2(order,omegac,sample,size,out) dbuttmags(order,omegac,sample,size[1],out) +#define u80u80d2buttmagd2(order,omegac,sample,size,out) u8buttmags(order,omegac,sample,size[1],out) + +#endif /* !INT_BUTTMAG_H__! */ diff --git a/2.3-1/src/c/signalProcessing/interfaces/int_cepstrum.h b/2.3-1/src/c/signalProcessing/interfaces/int_cepstrum.h new file mode 100644 index 00000000..af1991ba --- /dev/null +++ b/2.3-1/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/2.3-1/src/c/signalProcessing/interfaces/int_cheb1mag.h b/2.3-1/src/c/signalProcessing/interfaces/int_cheb1mag.h new file mode 100644 index 00000000..764e8c79 --- /dev/null +++ b/2.3-1/src/c/signalProcessing/interfaces/int_cheb1mag.h @@ -0,0 +1,18 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + 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 + Author: Ankit Raj + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in + */ + +#ifndef __INT_CHEB1MAG_H__ +#define __INT_CHEB1MAG_H__ + +#define d0d0d0d2cheb1magd2(n,omegac,epsilon,sample,size,out) dcheb1mags(n,omegac,epsilon,sample,size[1],out) + +#endif /* !__INT_CHEB1MAG_H__! */ diff --git a/2.3-1/src/c/signalProcessing/interfaces/int_cheb2mag.h b/2.3-1/src/c/signalProcessing/interfaces/int_cheb2mag.h new file mode 100644 index 00000000..b63db04d --- /dev/null +++ b/2.3-1/src/c/signalProcessing/interfaces/int_cheb2mag.h @@ -0,0 +1,18 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + 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 + Author: Ankit Raj + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in + */ + +#ifndef __INT_CHEB2MAG_H__ +#define __INT_CHEB2MAG_H__ + +#define d0d0d0d2cheb2magd2(n,omegar,A,sample,size,oup) dcheb2mags(n,omegar,A,sample,size[1],oup) + +#endif /* !__INT_CHEB2MAG_H__! */ diff --git a/2.3-1/src/c/signalProcessing/interfaces/int_convol.h b/2.3-1/src/c/signalProcessing/interfaces/int_convol.h new file mode 100644 index 00000000..80ec65b1 --- /dev/null +++ b/2.3-1/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