diff options
author | siddhu8990 | 2015-09-07 21:27:00 +0530 |
---|---|---|
committer | siddhu8990 | 2015-09-07 21:27:00 +0530 |
commit | 0bdaec9811b3e463514393aa1d3da6c3a96891a1 (patch) | |
tree | 2a012c5d922662809ce71930b53781106e2d57ea /src/c/elementaryFunctions/includes/cosh.h | |
parent | 222a3e39441ad408dacdc39d46d687dee5a6bf3c (diff) | |
download | scilab2c-0bdaec9811b3e463514393aa1d3da6c3a96891a1.tar.gz scilab2c-0bdaec9811b3e463514393aa1d3da6c3a96891a1.tar.bz2 scilab2c-0bdaec9811b3e463514393aa1d3da6c3a96891a1.zip |
Changes made for arduino support
Diffstat (limited to 'src/c/elementaryFunctions/includes/cosh.h')
-rw-r--r-- | src/c/elementaryFunctions/includes/cosh.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/c/elementaryFunctions/includes/cosh.h b/src/c/elementaryFunctions/includes/cosh.h index e084e427..5c7c8b71 100644 --- a/src/c/elementaryFunctions/includes/cosh.h +++ b/src/c/elementaryFunctions/includes/cosh.h @@ -112,7 +112,7 @@ EXTERN_ELEMFUNCT void zcosha(doubleComplex* in, int size, doubleComplex* out); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -EXTERN_ELEMFUNCT void u8cosha(uint8* in, int size, float* out); +EXTERN_ELEMFUNCT void u8cosha(uint8* in, int size, uint8* out); /* ** \brief Int8 Matrix Cosine function @@ -120,7 +120,7 @@ EXTERN_ELEMFUNCT void u8cosha(uint8* in, int size, float* out); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -EXTERN_ELEMFUNCT void i8cosha(int8* in, int size, float* out); +EXTERN_ELEMFUNCT void i8cosha(int8* in, int size, int8* out); /* ** \brief Uint16 Matrix Cosine function @@ -128,7 +128,7 @@ EXTERN_ELEMFUNCT void i8cosha(int8* in, int size, float* out); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -EXTERN_ELEMFUNCT void u16cosha(uint16* in, int size, float* out); +EXTERN_ELEMFUNCT void u16cosha(uint16* in, int size, uint16* out); /* ** \brief Int16 Matrix Cosine function @@ -136,7 +136,7 @@ EXTERN_ELEMFUNCT void u16cosha(uint16* in, int size, float* out); ** \param out : output array value. ** \param size : the size of in and out arrays. */ -EXTERN_ELEMFUNCT void i16cosha(int16* in, int size, float* out); +EXTERN_ELEMFUNCT void i16cosha(int16* in, int size, int16* out); #ifdef __cplusplus |