summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/includes/sin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/includes/sin.h')
-rw-r--r--src/elementaryFunctions/includes/sin.h34
1 files changed, 25 insertions, 9 deletions
diff --git a/src/elementaryFunctions/includes/sin.h b/src/elementaryFunctions/includes/sin.h
index f6342d56..9992f187 100644
--- a/src/elementaryFunctions/includes/sin.h
+++ b/src/elementaryFunctions/includes/sin.h
@@ -5,7 +5,7 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Tue Dec 5 15:49:18 2006 jofret
-** Last update Fri Feb 23 17:13:32 2007 jofret
+** Last update Mon Mar 19 12:00:10 2007 jofret
**
** Copyright INRIA 2006
*/
@@ -19,42 +19,58 @@
/*
** \brief Float Sine function
+** \param in : input value.
*/
-float ssins(float);
+float ssins(float in);
/*
** \brief Double Sine function
+** \param in : input value.
*/
-double dsins(double);
+double dsins(double in);
/*
** \brief Float Complex Sine function
+** \param in : input value.
*/
-floatComplex csins(floatComplex);
+floatComplex csins(floatComplex in);
/*
** \brief Double Complex Sine function
+** \param in : input value.
*/
-doubleComplex zsins(doubleComplex);
+doubleComplex zsins(doubleComplex in);
/*
** \brief Float Matrix Sine function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void ssina(float*, int, float*, int, int);
+void ssina(float* in, float* out, int size);
/*
** \brief Double Matrix Sine function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void dsina(double*, int, double*, int, int);
+void dsina(double* in, double* out, int size);
/*
** \brief Float Complex Matrix Sine function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void csina(floatComplex*, int, floatComplex*, int, int);
+void csina(floatComplex* in, floatComplex* out, int size);
/*
** \brief Double Complex Matrix Sine function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void zsina(doubleComplex*, int, doubleComplex*, int, int);
+void zsina(doubleComplex* in, doubleComplex* out, int size);