diff options
author | torset | 2009-01-22 08:41:34 +0000 |
---|---|---|
committer | torset | 2009-01-22 08:41:34 +0000 |
commit | 13606a7f256fb1f52adbaca86f6f2bb4c02b4e21 (patch) | |
tree | f504b6d7636b88b30f24e5f01c1651bdd5c214ec | |
parent | 37d4c69110eb8b50bbc25bf41b4eebc9350d94b4 (diff) | |
download | scilab2c-13606a7f256fb1f52adbaca86f6f2bb4c02b4e21.tar.gz scilab2c-13606a7f256fb1f52adbaca86f6f2bb4c02b4e21.tar.bz2 scilab2c-13606a7f256fb1f52adbaca86f6f2bb4c02b4e21.zip |
Remove Old
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sum.h | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sum.h b/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sum.h deleted file mode 100644 index 7b48f5fd..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sum.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 __SUM_H__ -#define __SUM_H__ - -#include "floatComplex.h" -#include "doubleComplex.h" - -/* -** \brief Sum of a scalar element, just returns it -*/ -#define ssums(in) in -#define srowsums(in) in -#define scolumnssums(in) in -#define smatlabsums(in) in - -/* -** \brief Sum of a scalar element, just returns it -*/ -#define dsums(in) in -#define drowsums(in) in -#define dcolumnssums(in) in -#define dmatlabsums(in) in - -/* -** \brief Sum of a scalar element, just returns it -*/ -#define csums(in) in -#define crowsums(in) in -#define ccolumnssums(in) in -#define cmatlabsums(in) in - -/* -** \brief Sum of a scalar element, just returns it -*/ -#define zsums(in) in -#define zrowsums(in) in -#define zcolumnssums(in) in -#define zmatlabsums(in) in - -/* -** \brief Sum of a float array -** \param in the float array to process -** \param size, the size of the array -** \returns the sum. -*/ -float ssuma(float *in, int size); - -/* -** \brief Sum of a float array -** \param in the double array to process -** \param size, the size of the array -** \returns the sum. -*/ -double dsuma(double *in, int size); - -/* -** \brief Sum of a float complex array -** \param in the float array to process -** \param size, the size of the array -** \returns the sum. -*/ -floatComplex csuma(floatComplex *in, int size); - -/* -** \brief Sum of a double complex array -** \param in the double array to process -** \param size, the size of the array -** \returns the sum. -*/ -doubleComplex zsuma(doubleComplex *in, int size); - -#endif /* !__SUM_H__ */ |