diff options
Diffstat (limited to 'src/elementaryFunctions/includes/cosh.h')
-rw-r--r-- | src/elementaryFunctions/includes/cosh.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/elementaryFunctions/includes/cosh.h b/src/elementaryFunctions/includes/cosh.h index ea6a9e5b..8383ff7c 100644 --- a/src/elementaryFunctions/includes/cosh.h +++ b/src/elementaryFunctions/includes/cosh.h @@ -5,11 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Tue Dec 5 15:49:18 2006 jofret -** Last update Mon Mar 19 12:08:32 2007 jofret +** Last update Mon Oct 22 09:33:12 2007 bruno ** ** Copyright INRIA 2006 */ +#ifndef __COSH_H__ +#define __COSH_H__ + #include "floatComplex.h" #include "doubleComplex.h" @@ -47,7 +50,7 @@ doubleComplex zcoshs(doubleComplex in); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void scosha(float* in, float* out, int size); +void scosha(float* in, int size, float* out); /* ** \brief Double Matrix Cosine function @@ -55,7 +58,7 @@ void scosha(float* in, float* out, int size); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void dcosha(double* in, double* out, int size); +void dcosha(double* in, int size, double* out); /* ** \brief Float Complex Matrix Cosine function @@ -63,7 +66,7 @@ void dcosha(double* in, double* out, int size); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void ccosha(floatComplex* in, floatComplex* out, int size); +void ccosha(floatComplex* in, int size, floatComplex* out); /* ** \brief Double Complex Matrix Cosine function @@ -71,6 +74,7 @@ void ccosha(floatComplex* in, floatComplex* out, int size); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -void zcosha(doubleComplex* in, doubleComplex* out, int size); +void zcosha(doubleComplex* in, int size, doubleComplex* out); +#endif /* !__COSH_H__ */ |