summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortorset2009-02-02 12:37:30 +0000
committertorset2009-02-02 12:37:30 +0000
commita8b3927f21cb5abfc998b81dc504cb04cf3828f5 (patch)
tree454240f74167bb345f00778b237d7262142559bd /src
parent795a6b12a62a1558e7c6bd346a3586c2636eb38e (diff)
downloadscilab2c-a8b3927f21cb5abfc998b81dc504cb04cf3828f5.tar.gz
scilab2c-a8b3927f21cb5abfc998b81dc504cb04cf3828f5.tar.bz2
scilab2c-a8b3927f21cb5abfc998b81dc504cb04cf3828f5.zip
Remove Old
Diffstat (limited to 'src')
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10a.c20
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10s.c19
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10a.c20
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10s.c18
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10a.c20
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10s.c18
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10a.c20
-rw-r--r--src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10s.c19
8 files changed, 0 insertions, 154 deletions
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10a.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10a.c
deleted file mode 100644
index 6f8d1905..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10a.c
+++ /dev/null
@@ -1,20 +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
- *
- */
-
-#include "log10.h"
-
-void clog10a(floatComplex* in, int size, floatComplex* out) {
- int i = 0;
- for (i = 0 ; i < size ; ++i) {
- out[i] = clog10s(in[i]);
- }
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10s.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10s.c
deleted file mode 100644
index 7d35ab1b..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/clog10s.c
+++ /dev/null
@@ -1,19 +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
- *
- */
-
-#include "log10.h"
-#include "log.h"
-
-floatComplex clog10s(floatComplex in) {
- floatComplex log_z = clogs(in);
- return FloatComplex(creals(log_z) / slogs(10.0f), cimags(log_z) / slogs(10.0f));
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10a.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10a.c
deleted file mode 100644
index fcfeb486..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10a.c
+++ /dev/null
@@ -1,20 +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
- *
- */
-
-#include "log10.h"
-
-void dlog10a(double* in, int size, double* out) {
- int i = 0;
- for (i = 0 ; i < size ; ++i) {
- out[i] = dlog10s(in[i]);
- }
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10s.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10s.c
deleted file mode 100644
index 14bc739b..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/dlog10s.c
+++ /dev/null
@@ -1,18 +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
- *
- */
-
-#include <math.h>
-#include "log10.h"
-
-double dlog10s(double in) {
- return (log10(in));
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10a.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10a.c
deleted file mode 100644
index b5f65405..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10a.c
+++ /dev/null
@@ -1,20 +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
- *
- */
-
-#include "log10.h"
-
-void slog10a(float* in, int size, float* out) {
- int i = 0;
- for (i = 0 ; i < size ; ++i) {
- out[i] = slog10s(in[i]);
- }
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10s.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10s.c
deleted file mode 100644
index cd1ed8e8..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/slog10s.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 "log10.h"
-
-float slog10s(float in) {
- return (log10f(in));
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10a.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10a.c
deleted file mode 100644
index dd25f7a5..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10a.c
+++ /dev/null
@@ -1,20 +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
- *
- */
-
-#include "log10.h"
-
-void zlog10a(doubleComplex* in, int size, doubleComplex* out) {
- int i = 0;
- for (i = 0 ; i < size ; ++i) {
- out[i] = zlog10s(in[i]);
- }
-}
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10s.c b/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10s.c
deleted file mode 100644
index 5403162f..00000000
--- a/src/Scilab2C/Scilab2C/CFiles/sci2ccode/zlog10s.c
+++ /dev/null
@@ -1,19 +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 "log10.h"
-#include "log.h"
-
-doubleComplex zlog10s(doubleComplex in) {
- doubleComplex log_z = zlogs(in);
- return DoubleComplex(zreals(log_z) / dlogs(10.0), zimags(log_z) / dlogs(10.0));
-}