summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortorset2009-02-20 10:20:57 +0000
committertorset2009-02-20 10:20:57 +0000
commit2b81cc929dddd7aaf88fbda1f00b64e3c3b7818d (patch)
tree219685a04307fd4dd59135fe9c515bdaa3c0c73d
parent147aefbcdc55ca9b33dcefcaa3f3ef86010b582b (diff)
downloadscilab2c-2b81cc929dddd7aaf88fbda1f00b64e3c3b7818d.tar.gz
scilab2c-2b81cc929dddd7aaf88fbda1f00b64e3c3b7818d.tar.bz2
scilab2c-2b81cc929dddd7aaf88fbda1f00b64e3c3b7818d.zip
change prototypes of matrixPow : if real on input, return real, not complex
-rw-r--r--src/matrixOperations/includes/matrixPow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/matrixOperations/includes/matrixPow.h b/src/matrixOperations/includes/matrixPow.h
index 71a2d5d0..d9d5684b 100644
--- a/src/matrixOperations/includes/matrixPow.h
+++ b/src/matrixOperations/includes/matrixPow.h
@@ -21,9 +21,9 @@
powm is only working on square matrix
so the size is limited to rows
*/
-void spowma(float* in, int rows, float expand, floatComplex* out);
+void spowma(float* in, int rows, float expand, float* out);
-void dpowma(double* in, int rows, double expand, doubleComplex* out);
+void dpowma(double* in, int rows, double expand, double* out);
void cpowma(floatComplex* in, int rows, floatComplex expand, floatComplex* out);