diff options
author | jofret | 2007-03-19 13:46:00 +0000 |
---|---|---|
committer | jofret | 2007-03-19 13:46:00 +0000 |
commit | 4066ab9555e89001502d3b611a5de8352ce17036 (patch) | |
tree | c68634b5317fe68537a6b44e6bd36d437f2e457c /src/elementaryFunctions/includes/tanh.h | |
parent | 550ddbd41603ba5b5768b32099541249d35c7394 (diff) | |
download | scilab2c-4066ab9555e89001502d3b611a5de8352ce17036.tar.gz scilab2c-4066ab9555e89001502d3b611a5de8352ce17036.tar.bz2 scilab2c-4066ab9555e89001502d3b611a5de8352ce17036.zip |
Correction of functions profile :
Remove "stride" parameters.
Add dioxygen style documentation.
Diffstat (limited to 'src/elementaryFunctions/includes/tanh.h')
-rw-r--r-- | src/elementaryFunctions/includes/tanh.h | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/src/elementaryFunctions/includes/tanh.h b/src/elementaryFunctions/includes/tanh.h index 22368869..58006feb 100644 --- a/src/elementaryFunctions/includes/tanh.h +++ b/src/elementaryFunctions/includes/tanh.h @@ -5,7 +5,7 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Tue Dec 5 15:49:18 2006 jofret -** Last update Fri Feb 23 17:32:55 2007 jofret +** Last update Mon Mar 19 11:47:46 2007 jofret ** ** Copyright INRIA 2006 */ @@ -19,42 +19,58 @@ /* ** \brief Float Hyperbolic Tangeant function +** \param in : input value. */ -float stanhs(float); +float stanhs(float in); /* ** \brief Double Hyperbolic Tangeant function +** \param in : input value. */ -double dtanhs(double); +double dtanhs(double in); /* ** \brief Float Complex Hyperbolic Tangeant function +** \param in : input value. */ -floatComplex ctanhs(floatComplex); +floatComplex ctanhs(floatComplex in); /* ** \brief Double Complex Hyperbolic Tangeant function +** \param in : input value. */ -doubleComplex ztanhs(doubleComplex); +doubleComplex ztanhs(doubleComplex in); /* ** \brief Float Matrix Hyperbolic Tangeant function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void stanha(float*, int, float*, int, int); +void stanha(float* in, float* out, int size); /* ** \brief Double Matrix Hyperbolic Tangeant function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void dtanha(double*, int, double*, int, int); +void dtanha(double* in, double* out, int size); /* ** \brief Float Complex Matrix Hyperbolic Tangeant function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void ctanha(floatComplex*, int, floatComplex*, int, int); +void ctanha(floatComplex* in, floatComplex* out, int size); /* ** \brief Double Complex Matrix Hyperbolic Tangeant function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void ztanha(doubleComplex*, int, doubleComplex*, int, int); +void ztanha(doubleComplex* in, doubleComplex* out, int size); |