From 4066ab9555e89001502d3b611a5de8352ce17036 Mon Sep 17 00:00:00 2001 From: jofret Date: Mon, 19 Mar 2007 13:46:00 +0000 Subject: Correction of functions profile : Remove "stride" parameters. Add dioxygen style documentation. --- src/elementaryFunctions/includes/tanh.h | 34 ++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) (limited to 'src/elementaryFunctions/includes/tanh.h') 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 ** ** 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); -- cgit