summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/includes/pow.h
diff options
context:
space:
mode:
authortorset2009-02-19 14:12:35 +0000
committertorset2009-02-19 14:12:35 +0000
commit6bec7e5598ad5cf78e56d82daf5a61f7d87839a8 (patch)
treed0951a78dd5be3730b9514c5b2d95386a2f133b3 /src/elementaryFunctions/includes/pow.h
parent31ebf3501c23dcd9d9d4b2452e91b6da5623060d (diff)
downloadscilab2c-6bec7e5598ad5cf78e56d82daf5a61f7d87839a8.tar.gz
scilab2c-6bec7e5598ad5cf78e56d82daf5a61f7d87839a8.tar.bz2
scilab2c-6bec7e5598ad5cf78e56d82daf5a61f7d87839a8.zip
Modify arrays pow : now computes A.^B instead of A.^b, A,B=matrices,b=scalar
Diffstat (limited to 'src/elementaryFunctions/includes/pow.h')
-rw-r--r--src/elementaryFunctions/includes/pow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/elementaryFunctions/includes/pow.h b/src/elementaryFunctions/includes/pow.h
index 26206c9b..ea32d962 100644
--- a/src/elementaryFunctions/includes/pow.h
+++ b/src/elementaryFunctions/includes/pow.h
@@ -23,12 +23,12 @@ floatComplex cpows(floatComplex value, floatComplex expand);
doubleComplex zpows(doubleComplex value, doubleComplex expand);
-void spowa(float *value, int size, float expand, float *out);
+void spowa(float *value, int size, float* expand, float *out);
-void dpowa(double *value, int size, double expand, double *out);
+void dpowa(double *value, int size, double* expand, double *out);
-void cpowa(floatComplex *value, int size, floatComplex expand, floatComplex *out);
+void cpowa(floatComplex *value, int size, floatComplex* expand, floatComplex *out);
-void zpowa(doubleComplex *value, int size, doubleComplex expand, doubleComplex *out);
+void zpowa(doubleComplex *value, int size, doubleComplex* expand, doubleComplex *out);
#endif /* !__POW_H__ */