summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorimushir2015-11-27 15:37:10 +0530
committerimushir2015-11-27 15:37:10 +0530
commita68ba950e81e43dfc8edb6b5966aaf601dbb8f8a (patch)
treee86f0eb9bf97680422eb1a705b9d0d73bcf8ce41
parent2e1296259dcbd5e1f9c886db492ec9c59f2ea560 (diff)
downloadscilab2c-a68ba950e81e43dfc8edb6b5966aaf601dbb8f8a.tar.gz
scilab2c-a68ba950e81e43dfc8edb6b5966aaf601dbb8f8a.tar.bz2
scilab2c-a68ba950e81e43dfc8edb6b5966aaf601dbb8f8a.zip
#define for u8 u16 i8 i16 added
-rw-r--r--src/c/elementaryFunctions/includes/sqrt.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/c/elementaryFunctions/includes/sqrt.h b/src/c/elementaryFunctions/includes/sqrt.h
index 7885c9c2..df11b20e 100644
--- a/src/c/elementaryFunctions/includes/sqrt.h
+++ b/src/c/elementaryFunctions/includes/sqrt.h
@@ -16,6 +16,7 @@
#include "dynlib_elementaryfunctions.h"
#include "floatComplex.h"
#include "doubleComplex.h"
+#include "types.h"
#ifdef __cplusplus
extern "C" {
@@ -48,13 +49,14 @@ EXTERN_ELEMFUNCT floatComplex csqrts(floatComplex in);
*/
EXTERN_ELEMFUNCT doubleComplex zsqrts(doubleComplex in);
+
/*
** \brief Float Matrix Square Root function
** \param in : input array value.
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-EXTERN_ELEMFUNCT void ssqrta(float* in, int size, float* out);
+EXTERN_ELEMFUNCT void ssqrta(float* in, int size, float* out);
/*
** \brief Double Matrix Square Root function
@@ -80,6 +82,10 @@ EXTERN_ELEMFUNCT void csqrta(floatComplex* in, int size, floatComplex* out);
*/
EXTERN_ELEMFUNCT void zsqrta(doubleComplex* in, int size, doubleComplex* out);
+
+
+
+
#ifdef __cplusplus
} /* extern "C" */
#endif