diff options
Diffstat (limited to 'src/elementaryFunctions/tanh')
-rw-r--r-- | src/elementaryFunctions/tanh/ctanha.c | 4 | ||||
-rw-r--r-- | src/elementaryFunctions/tanh/dtanha.c | 4 | ||||
-rw-r--r-- | src/elementaryFunctions/tanh/stanha.c | 4 | ||||
-rw-r--r-- | src/elementaryFunctions/tanh/ztanha.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/elementaryFunctions/tanh/ctanha.c b/src/elementaryFunctions/tanh/ctanha.c index 5062be25..8fd0d72d 100644 --- a/src/elementaryFunctions/tanh/ctanha.c +++ b/src/elementaryFunctions/tanh/ctanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 14:54:24 2006 jofret -** Last update Fri Feb 23 17:32:04 2007 jofret +** Last update Mon Mar 19 11:33:54 2007 jofret ** ** Copyright INRIA 2006 */ #include "tanh.h" -void ctanha(floatComplex* x, int strideX, floatComplex* y, int strideY, int size) { +void ctanha(floatComplex* x, floatComplex* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = ctanhs(x[i]); diff --git a/src/elementaryFunctions/tanh/dtanha.c b/src/elementaryFunctions/tanh/dtanha.c index fe690b23..9cf0e8de 100644 --- a/src/elementaryFunctions/tanh/dtanha.c +++ b/src/elementaryFunctions/tanh/dtanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 14:54:56 2006 jofret -** Last update Fri Feb 23 17:31:10 2007 jofret +** Last update Mon Mar 19 11:34:04 2007 jofret ** ** Copyright INRIA 2006 */ #include "tanh.h" -void dtanha(double* x, int strideX, double* y, int strideY, int size) { +void dtanha(double* x, double* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = dtanhs(x[i]); diff --git a/src/elementaryFunctions/tanh/stanha.c b/src/elementaryFunctions/tanh/stanha.c index 54aea93d..f93e1bca 100644 --- a/src/elementaryFunctions/tanh/stanha.c +++ b/src/elementaryFunctions/tanh/stanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 16:03:27 2006 jofret -** Last update Fri Feb 23 17:30:54 2007 jofret +** Last update Mon Mar 19 11:34:25 2007 jofret ** ** Copyright INRIA 2006 */ #include "tanh.h" -void stanha(float* x, int strideX, float* y, int strideY, int size) { +void stanha(float* x, float* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = stanhs(x[i]); diff --git a/src/elementaryFunctions/tanh/ztanha.c b/src/elementaryFunctions/tanh/ztanha.c index d1ca0fc7..b1039b9f 100644 --- a/src/elementaryFunctions/tanh/ztanha.c +++ b/src/elementaryFunctions/tanh/ztanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 16:12:02 2006 jofret -** Last update Fri Feb 23 17:30:40 2007 jofret +** Last update Mon Mar 19 11:34:36 2007 jofret ** ** Copyright INRIA 2006 */ #include "tanh.h" -void ztanha(doubleComplex* x, int strideX, doubleComplex* y, int strideY, int size) { +void ztanha(doubleComplex* x, doubleComplex* y, int size) { int i = 0; for (i = 0; i < size; ++i) { y[i] = ztanhs(x[i]); |