diff options
Diffstat (limited to 'src/elementaryFunctions/includes/acos.h')
-rw-r--r-- | src/elementaryFunctions/includes/acos.h | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/src/elementaryFunctions/includes/acos.h b/src/elementaryFunctions/includes/acos.h index 96c705e3..c17423cf 100644 --- a/src/elementaryFunctions/includes/acos.h +++ b/src/elementaryFunctions/includes/acos.h @@ -5,7 +5,7 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Fri Jan 5 10:20:35 2007 jofret -** Last update Fri Feb 23 16:38:45 2007 jofret +** Last update Mon Mar 19 13:43:30 2007 jofret ** ** Copyright INRIA 2007 */ @@ -19,42 +19,58 @@ /* ** \brief Float ArcCosine function +** \param in : input array value. */ -float sacoss(float); +float sacoss(float in); /* ** \brief Double ArcCosine function +** \param in : input array value. */ -double dacoss(double); +double dacoss(double in); /* ** \brief Float Complex ArcCosine function +** \param in : input array value. */ -floatComplex cacoss(floatComplex); +floatComplex cacoss(floatComplex in); /* ** \brief Double Complex ArcCosine function +** \param in : input array value. */ -doubleComplex zacoss(doubleComplex); +doubleComplex zacoss(doubleComplex in); /* ** \brief Float Matrix ArcCosine function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void sacosa(float*, int, float*, int, int); +void sacosa(float* in, float* out, int size); /* ** \brief Double Matrix ArcCosine function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void dacosa(double*, int, double*, int, int); +void dacosa(double* in, double* out, int size); /* ** \brief Float Complex Matrix ArcCosine function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void cacosa(floatComplex*, int, floatComplex*, int, int); +void cacosa(floatComplex* in, floatComplex* out, int size); /* ** \brief Double Complex Matrix ArcCosine function +** \param in : input array value. +** \param out : output array value. +** \param size : the size of in and out arrays. */ -void zacosa(doubleComplex*, int, doubleComplex*, int, int); +void zacosa(doubleComplex* in, doubleComplex* out, int size); |