diff options
Diffstat (limited to 'src/elementaryFunctions/includes/acosh.h')
-rw-r--r-- | src/elementaryFunctions/includes/acosh.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/elementaryFunctions/includes/acosh.h b/src/elementaryFunctions/includes/acosh.h index 93527016..c488f698 100644 --- a/src/elementaryFunctions/includes/acosh.h +++ b/src/elementaryFunctions/includes/acosh.h @@ -5,11 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Fri Jan 5 10:20:35 2007 jofret -** Last update Wed Sep 5 15:31:02 2007 bruno +** Last update Mon Oct 22 09:40:42 2007 bruno ** ** Copyright INRIA 2007 */ +#ifndef __ACOSH_H__ +#define __ACOSH_H__ + #include "floatComplex.h" #include "doubleComplex.h" @@ -47,7 +50,7 @@ doubleComplex zacoshs(doubleComplex in); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void sacosha(float* in, float* out, int size); +void sacosha(float* in, int size, float* out); /* ** \brief Double Matrix Hyperbolic ArcCosine function @@ -55,7 +58,7 @@ void sacosha(float* in, float* out, int size); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void dacosha(double* in, double* out, int size); +void dacosha(double* in, int size, double* out); /* ** \brief Float Complex Matrix Hyperbolic ArcCosine function @@ -63,7 +66,7 @@ void dacosha(double* in, double* out, int size); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void cacosha(floatComplex* in, floatComplex* out, int size); +void cacosha(floatComplex* in, int size, floatComplex* out); /* ** \brief Double Complex Matrix Hyperbolic ArcCosine function @@ -71,6 +74,6 @@ void cacosha(floatComplex* in, floatComplex* out, int size); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void zacosha(doubleComplex* in, doubleComplex* out, int size); - +void zacosha(doubleComplex* in, int size, doubleComplex* out); +#endif /* !__ACOSH_H__ */ |