summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/includes/exp.h
diff options
context:
space:
mode:
authorjofret2007-03-19 13:46:00 +0000
committerjofret2007-03-19 13:46:00 +0000
commit4066ab9555e89001502d3b611a5de8352ce17036 (patch)
treec68634b5317fe68537a6b44e6bd36d437f2e457c /src/elementaryFunctions/includes/exp.h
parent550ddbd41603ba5b5768b32099541249d35c7394 (diff)
downloadscilab2c-4066ab9555e89001502d3b611a5de8352ce17036.tar.gz
scilab2c-4066ab9555e89001502d3b611a5de8352ce17036.tar.bz2
scilab2c-4066ab9555e89001502d3b611a5de8352ce17036.zip
Correction of functions profile :
Remove "stride" parameters. Add dioxygen style documentation.
Diffstat (limited to 'src/elementaryFunctions/includes/exp.h')
-rw-r--r--src/elementaryFunctions/includes/exp.h34
1 files changed, 25 insertions, 9 deletions
diff --git a/src/elementaryFunctions/includes/exp.h b/src/elementaryFunctions/includes/exp.h
index d4c93ce1..800519bd 100644
--- a/src/elementaryFunctions/includes/exp.h
+++ b/src/elementaryFunctions/includes/exp.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:06:25 2007 jofret
+** Last update Mon Mar 19 13:47:48 2007 jofret
**
** Copyright INRIA 2006
*/
@@ -19,42 +19,58 @@
/*
** \brief Float Exponential function
+** \param in : input value.
*/
-float sexps(float);
+float sexps(float in);
/*
** \brief Double Exponential function
+** \param in : input value.
*/
-double dexps(double);
+double dexps(double in);
/*
** \brief Float Complex Exponential function
+** \param in : input value.
*/
-floatComplex cexps(floatComplex);
+floatComplex cexps(floatComplex in);
/*
** \brief Double Complex Exponential function
+** \param in : input value.
*/
-doubleComplex zexps(doubleComplex);
+doubleComplex zexps(doubleComplex in);
/*
** \brief Float Matrix Exponential function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void sexpa(float*, int, float*, int, int);
+void sexpa(float* in, float* out, int size);
/*
** \brief Double Matrix Exponential function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void dexpa(double*, int, double*, int, int);
+void dexpa(double* in, double* out, int size);
/*
** \brief Float Complex Matrix Exponential function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void cexpa(floatComplex*, int, floatComplex*, int, int);
+void cexpa(floatComplex* in, floatComplex* out, int size);
/*
** \brief Double Complex Matrix Exponential function
+** \param in : input array value.
+** \param out : output array value.
+** \param size : the size of in and out arrays.
*/
-void zexpa(doubleComplex*, int, doubleComplex*, int, int);
+void zexpa(doubleComplex* in, doubleComplex* out, int size);