summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/includes/sin.h
diff options
context:
space:
mode:
authorjofret2007-10-22 15:25:31 +0000
committerjofret2007-10-22 15:25:31 +0000
commit1c4dd59a3c4a052771bfdb3c625dd11b4eb94b60 (patch)
tree9dc930a53931f0db39f462dfcec8f4a5a3f836f8 /src/elementaryFunctions/includes/sin.h
parent631a22d38f47413311f08b4b78c13e3ec7b4f1d2 (diff)
downloadscilab2c-1c4dd59a3c4a052771bfdb3c625dd11b4eb94b60.tar.gz
scilab2c-1c4dd59a3c4a052771bfdb3c625dd11b4eb94b60.tar.bz2
scilab2c-1c4dd59a3c4a052771bfdb3c625dd11b4eb94b60.zip
Moving array functions prototype
Diffstat (limited to 'src/elementaryFunctions/includes/sin.h')
-rw-r--r--src/elementaryFunctions/includes/sin.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/elementaryFunctions/includes/sin.h b/src/elementaryFunctions/includes/sin.h
index 9992f187..63226ec1 100644
--- a/src/elementaryFunctions/includes/sin.h
+++ b/src/elementaryFunctions/includes/sin.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:00:10 2007 jofret
+** Last update Mon Oct 22 09:24:56 2007 bruno
**
** Copyright INRIA 2006
*/
+#ifndef __SIN_H__
+#define __SIN_H__
+
#include "floatComplex.h"
#include "doubleComplex.h"
@@ -47,7 +50,7 @@ doubleComplex zsins(doubleComplex in);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-void ssina(float* in, float* out, int size);
+void ssina(float* in, int size, float* out);
/*
** \brief Double Matrix Sine function
@@ -55,7 +58,7 @@ void ssina(float* in, float* out, int size);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-void dsina(double* in, double* out, int size);
+void dsina(double* in, int size, double* out);
/*
** \brief Float Complex Matrix Sine function
@@ -63,7 +66,7 @@ void dsina(double* in, double* out, int size);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-void csina(floatComplex* in, floatComplex* out, int size);
+void csina(floatComplex* in, int size, floatComplex* out);
/*
** \brief Double Complex Matrix Sine function
@@ -71,6 +74,7 @@ void csina(floatComplex* in, floatComplex* out, int size);
** \param out : output array value.
** \param size : the size of in and out arrays.
*/
-void zsina(doubleComplex* in, doubleComplex* out, int size);
+void zsina(doubleComplex* in, int size, doubleComplex* out);
+#endif /* !__SIN_H__ */