diff options
author | torset | 2009-01-30 13:49:46 +0000 |
---|---|---|
committer | torset | 2009-01-30 13:49:46 +0000 |
commit | da86f6b3382d035154889bee6a19c7603128f5db (patch) | |
tree | 7c75195740cf6d97d49967110f20f438b78eeefa /src/Scilab2C | |
parent | 5559ef08897de0edfabcf9d75b1b38abf8f45356 (diff) | |
download | scilab2c-da86f6b3382d035154889bee6a19c7603128f5db.tar.gz scilab2c-da86f6b3382d035154889bee6a19c7603128f5db.tar.bz2 scilab2c-da86f6b3382d035154889bee6a19c7603128f5db.zip |
Remove unlinked files
Diffstat (limited to 'src/Scilab2C')
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1pa.c | 20 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1ps.c | 18 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1pa.c | 20 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1ps.c | 37 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1pa.c | 20 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1ps.c | 18 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1pa.c | 20 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1ps.c | 18 |
8 files changed, 0 insertions, 171 deletions
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1pa.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1pa.c deleted file mode 100644 index 76c78a94..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1pa.c +++ /dev/null @@ -1,20 +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 - * - */ - -#include "log1p.h" - -void clog1pa(floatComplex* in, int size, floatComplex* out) { - int i = 0; - for (i = 0; i < size; ++i) { - out[i] = clog1ps(in[i]); - } -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1ps.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1ps.c deleted file mode 100644 index 1cf6c555..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog1ps.c +++ /dev/null @@ -1,18 +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 - * - */ - -#include "log1p.h" -#include "log.h" - -floatComplex clog1ps(floatComplex in) { - return clogs(FloatComplex(creals(in) + 1, cimags(in))); -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1pa.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1pa.c deleted file mode 100644 index c1bf85ba..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1pa.c +++ /dev/null @@ -1,20 +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 - * - */ - -#include "log1p.h" - -void dlog1pa(double* x, int size, double* y) { - int i = 0; - for (i = 0; i < size; ++i) { - y[i] = dlog1ps(x[i]); - } -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1ps.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1ps.c deleted file mode 100644 index 8275ea57..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog1ps.c +++ /dev/null @@ -1,37 +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 - * - */ - -#include "log1p.h" -#include "log.h" - -double dlog1ps(double in) { - static double A = -1.0/3.0; - static double B = 0.5; - - if(in < -1) - {/* got NaN */ - return (in - in) / (in - in); /* NaN */ - } - else if(A <= in && in <= B) - {/* use the function log((1+g)/(1-g)) with g = x/(x + 2) */ - double Temp = 0; - Temp = in / ( in + 2); - /* -return lnp1m1(Temp); - */ - return 0; - } - else - {/* use the standard formula */ - return dlogs(in + 1); - } -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1pa.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1pa.c deleted file mode 100644 index 05334841..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1pa.c +++ /dev/null @@ -1,20 +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 - * - */ - -#include "log1p.h" - -void slog1pa(float* in, int size, float* out) { - int i = 0; - for (i = 0; i < size; ++i) { - out[i] = slog1ps(in[i]); - } -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1ps.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1ps.c deleted file mode 100644 index 22d59544..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog1ps.c +++ /dev/null @@ -1,18 +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 - * - */ - -#include <math.h> -#include "log1p.h" - -float slog1ps(float in) { - return (log1pf(in)); -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1pa.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1pa.c deleted file mode 100644 index 0b6b35ae..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1pa.c +++ /dev/null @@ -1,20 +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 - * - */ - -#include "log1p.h" - -void zlog1pa(doubleComplex* in, int size, doubleComplex* out) { - int i = 0; - for (i = 0; i < size; ++i) { - out[i] = zlog1ps(in[i]); - } -} diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1ps.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1ps.c deleted file mode 100644 index 8b0aeb67..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog1ps.c +++ /dev/null @@ -1,18 +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 - * - */ - -#include "log.h" -#include "log1p.h" - -doubleComplex zlog1ps(doubleComplex in) { - return zlogs(DoubleComplex(zreals(in) + 1, zimags(in))); -} |