diff options
author | torset | 2009-01-21 16:14:37 +0000 |
---|---|---|
committer | torset | 2009-01-21 16:14:37 +0000 |
commit | f6e7085c3b195291b837801cb00ece921be4ce70 (patch) | |
tree | 2740aceb1d131e98da160d011ebafe338e6cf503 | |
parent | 709b0fa139336fda367eea65e90584bff2258005 (diff) | |
download | scilab2c-f6e7085c3b195291b837801cb00ece921be4ce70.tar.gz scilab2c-f6e7085c3b195291b837801cb00ece921be4ce70.tar.bz2 scilab2c-f6e7085c3b195291b837801cb00ece921be4ce70.zip |
Remove Old
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2cincludes/mean.h | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/mean.h b/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/mean.h deleted file mode 100644 index 07269e5a..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/mean.h +++ /dev/null @@ -1,83 +0,0 @@ -/* - * 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 - * - */ - -#ifndef __MEAN_H__ -#define __MEAN_H__ - -#include "floatComplex.h" -#include "doubleComplex.h" - -/* -** \brief Mean of a scalar element, just returns it -*/ -#define smeans(in) in -#define srowmeans(in) in -#define scolumnsmeans(in) in -#define smatlabmeans(in) in - -/* -** \brief Mean of a scalar element, just returns it -*/ -#define dmeans(in) in -#define drowmeans(in) in -#define dcolumnsmeans(in) in -#define dmatlabmeans(in) in - -/* -** \brief Mean of a scalar element, just returns it -*/ -#define cmeans(in) in -#define crowmeans(in) in -#define ccolumnsmeans(in) in -#define cmatlabmeans(in) in - -/* -** \brief Mean of a scalar element, just returns it -*/ -#define zmeans(in) in -#define zrowmeans(in) in -#define zcolumnsmeans(in) in -#define zmatlabmeans(in) in - -/* -** \brief Mean of a float array -** \param in the float array to process -** \param size, the size of the array -** \returns the mean. -*/ -float smeana(float *in, int size); - -/* -** \brief Mean of a float array -** \param in the double array to process -** \param size, the size of the array -** \returns the mean. -*/ -double dmeana(double *in, int size); - -/* -** \brief Mean of a float complex array -** \param in the float array to process -** \param size, the size of the array -** \returns the mean. -*/ -floatComplex cmeana(floatComplex *in, int size); - -/* -** \brief Mean of a double complex array -** \param in the double array to process -** \param size, the size of the array -** \returns the mean. -*/ -doubleComplex zmeana(doubleComplex *in, int size); - -#endif /* !__MEAN_H__ */ |