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/tan.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/tan.h')
-rw-r--r-- | src/elementaryFunctions/includes/tan.h | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/src/elementaryFunctions/includes/tan.h b/src/elementaryFunctions/includes/tan.h index f6d7235c..4088515e 100644 --- a/src/elementaryFunctions/includes/tan.h +++ b/src/elementaryFunctions/includes/tan.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:26:35 2007 jofret +** Last update Mon Mar 19 11:56:44 2007 jofret ** ** Copyright INRIA 2006 */ @@ -19,42 +19,58 @@ /* ** \brief Float Tangeant function +** \param in : input value. */ -float stans(float); +float stans(float in); /* ** \brief Double Tangeant function +** \param in : input value. */ -double dtans(double); +double dtans(double in); /* ** \brief Float Complex Tangeant function +** \param in : input value. */ -floatComplex ctans(floatComplex); +floatComplex ctans(floatComplex in); /* ** \brief Double Complex Tangeant function +** \param in : input value. */ -doubleComplex ztans(doubleComplex); +doubleComplex ztans(doubleComplex in); /* ** \brief Float Matrix Tangeant function +** \param in : input array value. +** \param out : input array value. +** \param size : the size of in and out arrays. */ -void stana(float*, int, float*, int, int); +void stana(float* in, float* out, int size); /* ** \brief Double Matrix Tangeant function +** \param in : input array value. +** \param out : input array value. +** \param size : the size of in and out arrays. */ -void dtana(double*, int, double*, int, int); +void dtana(double* in, double* out, int size); /* ** \brief Float Complex Matrix Tangeant function +** \param in : input array value. +** \param out : input array value. +** \param size : the size of in and out arrays. */ -void ctana(floatComplex*, int, floatComplex*, int, int); +void ctana(floatComplex* in, floatComplex* out, int size); /* ** \brief Double Complex Matrix Tangeant function +** \param in : input array value. +** \param out : input array value. +** \param size : the size of in and out arrays. */ -void ztana(doubleComplex*, int, doubleComplex*, int, int); +void ztana(doubleComplex* in, doubleComplex* out, int size); |