diff options
Diffstat (limited to 'src/elementaryFunctions/tanh/stanha.c')
-rw-r--r-- | src/elementaryFunctions/tanh/stanha.c | 4 |
1 files changed, 2 insertions, 2 deletions
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]); |