diff options
author | Sandeep Gupta | 2017-07-05 12:41:25 +0530 |
---|---|---|
committer | Sandeep Gupta | 2017-07-05 12:41:25 +0530 |
commit | 06337f0dc8114c70fd0c7767083971a0d091750a (patch) | |
tree | 446481550ba88e6e0f7df2db7fdc66d2016ee2f1 /src/c/signalProcessing/includes | |
parent | c2e305c3b82ed944d57402dd515b3d5839a31980 (diff) | |
download | Scilab2C_fossee_old-06337f0dc8114c70fd0c7767083971a0d091750a.tar.gz Scilab2C_fossee_old-06337f0dc8114c70fd0c7767083971a0d091750a.tar.bz2 Scilab2C_fossee_old-06337f0dc8114c70fd0c7767083971a0d091750a.zip |
LinearAlgebra and MatrixOperation Update
Diffstat (limited to 'src/c/signalProcessing/includes')
-rw-r--r-- | src/c/signalProcessing/includes/amell.h | 28 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/buttmag.h | 29 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/cheb1mag.h | 27 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/cheb2mag.h | 27 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/dct.h | 38 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/ell1mag.h | 29 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/ffilt.h | 27 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/filt_sinc.h | 28 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/fsfirlin.h | 28 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/idct.h | 38 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/modk.h | 28 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/modsn.h | 31 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/sincd.h | 29 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/zpbutt.h | 29 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/zpch1.h | 28 | ||||
-rw-r--r-- | src/c/signalProcessing/includes/zpch2.h | 28 |
16 files changed, 0 insertions, 472 deletions
diff --git a/src/c/signalProcessing/includes/amell.h b/src/c/signalProcessing/includes/amell.h deleted file mode 100644 index 2336d3c..0000000 --- a/src/c/signalProcessing/includes/amell.h +++ /dev/null @@ -1,28 +0,0 @@ -/* Copyright (C) 2017 - 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 __AMELL_H__ -#define __AMELL_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -double damells(double u,double x); -void damella(double* u,int size,double x,double* oup); - -#ifdef __cplusplus -} /* extern "c" */ -#endif - -#endif /*__AMELL_H__*/ diff --git a/src/c/signalProcessing/includes/buttmag.h b/src/c/signalProcessing/includes/buttmag.h deleted file mode 100644 index ef17b7e..0000000 --- a/src/c/signalProcessing/includes/buttmag.h +++ /dev/null @@ -1,29 +0,0 @@ -/* Copyright (C) 2017 - 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 __BUTTMAG_H__ -#define __BUTTMAG_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dbuttmags(double order, double omegac, double* sample, int size,double* out); -void u8buttmags(int order, int omegac, double* sample, int size,double* out); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __BUTTMAG_H__ */ - diff --git a/src/c/signalProcessing/includes/cheb1mag.h b/src/c/signalProcessing/includes/cheb1mag.h deleted file mode 100644 index 369ee4c..0000000 --- a/src/c/signalProcessing/includes/cheb1mag.h +++ /dev/null @@ -1,27 +0,0 @@ -/* 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 __CHEB1MAG_H__ -#define __CHEB1MAG_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dcheb1mags(double n, double omegac, double epsilon, double* sample,int size,double* out); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __CHEB1MAG_H__ */ diff --git a/src/c/signalProcessing/includes/cheb2mag.h b/src/c/signalProcessing/includes/cheb2mag.h deleted file mode 100644 index 0516ca5..0000000 --- a/src/c/signalProcessing/includes/cheb2mag.h +++ /dev/null @@ -1,27 +0,0 @@ -/* 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 __CHEB2MAG_H__ -#define __CHEB2MAG_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dcheb2mags(double n,double omegar, double A, double* sample,int size,double* oup); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __CHEB2MAG_H__ */ diff --git a/src/c/signalProcessing/includes/dct.h b/src/c/signalProcessing/includes/dct.h deleted file mode 100644 index db95274..0000000 --- a/src/c/signalProcessing/includes/dct.h +++ /dev/null @@ -1,38 +0,0 @@ -/* 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: Ukasha Noor - Organization: FOSSEE, IIT Bombay - Email: toolbox@scilab.in -*/ - - -#ifndef __DCT_H__ -#define __DCT_H__ - -#include <math.h> -#include "types.h" -#include "doubleComplex.h" -#include "addition.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void ddcta(double *in,int row,int col,int sign,double *out); - -void sdcta(float *in,int row,int col,int sign,float *out); - -void zdcta(doubleComplex *in,int row,int col,int sign,doubleComplex *out); - -//void cdcta(floatComplex *in,int row,int col,int sign,floatComplex *out); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif diff --git a/src/c/signalProcessing/includes/ell1mag.h b/src/c/signalProcessing/includes/ell1mag.h deleted file mode 100644 index e881cca..0000000 --- a/src/c/signalProcessing/includes/ell1mag.h +++ /dev/null @@ -1,29 +0,0 @@ -/* Copyright (C) 2017 - 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 __ELL1MAG_H__ -#define __ELL1MAG_H__ -#include "types.h" -#include "doubleComplex.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void zell1maga(double eps,double m1,doubleComplex* z,int size,double* oup); -void dell1maga(double eps,double m1,double* z,int size,double* oup); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /*__ELL1MAG_H__*/ diff --git a/src/c/signalProcessing/includes/ffilt.h b/src/c/signalProcessing/includes/ffilt.h deleted file mode 100644 index f38df6e..0000000 --- a/src/c/signalProcessing/includes/ffilt.h +++ /dev/null @@ -1,27 +0,0 @@ -/* Copyright (C) 2017 - 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 __FFILT_H__ -#define __FFILT_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void gffilts(char* ft,int size,double N,double fc,double fh,double* oup); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __FFILT_H__ */ diff --git a/src/c/signalProcessing/includes/filt_sinc.h b/src/c/signalProcessing/includes/filt_sinc.h deleted file mode 100644 index 095ca91..0000000 --- a/src/c/signalProcessing/includes/filt_sinc.h +++ /dev/null @@ -1,28 +0,0 @@ -/* Copyright (C) 2017 - 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 __FILT_SINC_H__ -#define __FILT_SINC_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dfilt_sincs(double N,double fc,double* oup); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __FILT_SINC_H */ - diff --git a/src/c/signalProcessing/includes/fsfirlin.h b/src/c/signalProcessing/includes/fsfirlin.h deleted file mode 100644 index cf5fbbd..0000000 --- a/src/c/signalProcessing/includes/fsfirlin.h +++ /dev/null @@ -1,28 +0,0 @@ -/* Copyright (C) 2017 - 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 __FSFIRLIN_H__ -#define __FSFIRLIN_H__ -#include "types.h" -#include "sincd.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dfsfirlina(double* hd,int size,double flag,double* hst); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /*__FSFIRLIN_H__*/ diff --git a/src/c/signalProcessing/includes/idct.h b/src/c/signalProcessing/includes/idct.h deleted file mode 100644 index 1e7b85b..0000000 --- a/src/c/signalProcessing/includes/idct.h +++ /dev/null @@ -1,38 +0,0 @@ -/* 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: Ukasha Noor - Organization: FOSSEE, IIT Bombay - Email: toolbox@scilab.in -*/ - - -#ifndef __IDCT_H__ -#define __IDCT_H__ - -#include <math.h> -#include "types.h" -#include "doubleComplex.h" -#include "addition.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void didcta(double *in,int row,int col,double *out); - -void sidcta(float *in,int row,int col,float *out); - -void zidcta(doubleComplex *in,int row,int col,doubleComplex *out); - -void cidcta(floatComplex *in,int row,int col,floatComplex *out); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif diff --git a/src/c/signalProcessing/includes/modk.h b/src/c/signalProcessing/includes/modk.h deleted file mode 100644 index 5040eb7..0000000 --- a/src/c/signalProcessing/includes/modk.h +++ /dev/null @@ -1,28 +0,0 @@ -/* Copyright (C) 2017 - 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 __MODK_H__ -#define __MODK_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dmodka(double* inp,int size,double* oup); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __MODK_H__ */ - diff --git a/src/c/signalProcessing/includes/modsn.h b/src/c/signalProcessing/includes/modsn.h deleted file mode 100644 index d91dd9d..0000000 --- a/src/c/signalProcessing/includes/modsn.h +++ /dev/null @@ -1,31 +0,0 @@ -/* Copyright (C) 2017 - 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 __MODSN_H__ -#define __MODSN_H__ -#include "types.h" -#include "doubleComplex.h" - -#ifdef __cplusplus -extern "C" { -#endif - -double dmodsns(double uu, double emmc); -doubleComplex zmodsns(doubleComplex uu,double emmc); -void dmodsna(double* uu,int size,double emmc,double* sn); -void zmodsna(doubleComplex* uu,int size,double emmc,doubleComplex* sn); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __MODSN_H__ */ diff --git a/src/c/signalProcessing/includes/sincd.h b/src/c/signalProcessing/includes/sincd.h deleted file mode 100644 index 9b7a360..0000000 --- a/src/c/signalProcessing/includes/sincd.h +++ /dev/null @@ -1,29 +0,0 @@ -/* 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 __SINCD_H__ -#define __SINCD_H__ -#include "types.h" - -#ifdef __cplusplus -extern "C" { -#endif - -void dsincds(double n,double flg,double* oup); -void u8sincds(int n,int flg,double* oup); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __SINCD_H__ */ - diff --git a/src/c/signalProcessing/includes/zpbutt.h b/src/c/signalProcessing/includes/zpbutt.h deleted file mode 100644 index 9eb88ad..0000000 --- a/src/c/signalProcessing/includes/zpbutt.h +++ /dev/null @@ -1,29 +0,0 @@ -/* 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 __ZPBUTT_H__ -#define __ZPBUTT_H__ -#include "types.h" -#include "doubleComplex.h" - -#ifdef __cplusplus -extern "C" { -#endif - -double dzpbutts(double n,double fl,doubleComplex* out); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __ZPBUTT_H__ */ - diff --git a/src/c/signalProcessing/includes/zpch1.h b/src/c/signalProcessing/includes/zpch1.h deleted file mode 100644 index fbe850c..0000000 --- a/src/c/signalProcessing/includes/zpch1.h +++ /dev/null @@ -1,28 +0,0 @@ -/* 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 __ZPCH1_H__ -#define __ZPCH1_H__ -#include "types.h" -#include "doubleComplex.h" - -#ifdef __cplusplus -extern "C" { -#endif - -double dzpch1s(double N,double e,double wc,doubleComplex* out); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __ZPCH1_H__ */ diff --git a/src/c/signalProcessing/includes/zpch2.h b/src/c/signalProcessing/includes/zpch2.h deleted file mode 100644 index d7c1c64..0000000 --- a/src/c/signalProcessing/includes/zpch2.h +++ /dev/null @@ -1,28 +0,0 @@ -/* 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 __ZPCH2_H__ -#define __ZPCH2_H__ -#include "types.h" -#include "doubleComplex.h" - -#ifdef __cplusplus -extern "C" { -#endif - -double dzpch2s(double N, double A, double omegar,doubleComplex* zeros,doubleComplex* poles); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* __ZPCH2_H__ */ |