diff options
author | torset | 2009-02-02 12:36:02 +0000 |
---|---|---|
committer | torset | 2009-02-02 12:36:02 +0000 |
commit | 795a6b12a62a1558e7c6bd346a3586c2636eb38e (patch) | |
tree | 8f0c3cc239788f60349f8ea09b320bf535cf9072 /src | |
parent | 8dd70f5d0c952700bcff194637494fea5a701f8e (diff) | |
download | scilab2c-795a6b12a62a1558e7c6bd346a3586c2636eb38e.tar.gz scilab2c-795a6b12a62a1558e7c6bd346a3586c2636eb38e.tar.bz2 scilab2c-795a6b12a62a1558e7c6bd346a3586c2636eb38e.zip |
Remove Old
Diffstat (limited to 'src')
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2cincludes/log10.h | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/log10.h b/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/log10.h deleted file mode 100644 index a68810a9..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/log10.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-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 __LOG10_H__ -#define __LOG10_H__ - -#include "floatComplex.h" -#include "doubleComplex.h" - -/* -** Compute Ten based Logarithm for different types . -*/ - -/* -** \brief Float Ten based Logarithm function -** \param in : input value. -*/ -float slog10s(float in); - -/* -** \brief Double Ten based Logarithm function -** \param in : input value. -*/ -double dlog10s(double in); - -/* -** \brief Float Complex Ten based Logarithm function -** \param in : input value. -*/ -floatComplex clog10s(floatComplex in); - -/* -** \brief Double Complex Ten based Logarithm function -** \param in : input value. -*/ -doubleComplex zlog10s(doubleComplex in); - -/* -** \brief Float Matrix Ten based Logarithm function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void slog10a(float* in, int size, float* out); - -/* -** \brief Double Matrix Ten based Logarithm function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void dlog10a(double* in, int size, double* out); - -/* -** \brief Float Complex Matrix Ten based Logarithm function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void clog10a(floatComplex* in, int size, floatComplex* out); - -/* -** \brief Double Complex Matrix Ten based Logarithm function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void zlog10a(doubleComplex* in, int size, doubleComplex* out); - -#endif /* !__LOG10_H__ */ - |