summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortorset2009-02-20 10:20:57 +0000
committertorset2009-02-20 10:20:57 +0000
commit7c6e03effe72ad9aac4c1056e9d09f281f52d7ce (patch)
tree66a775a4cf130935f192d6f858a4230bfa2bb37f
parent38c823422fd6b4bd25ca2016bba2db51a56c2ae2 (diff)
downloadscilab2c-7c6e03effe72ad9aac4c1056e9d09f281f52d7ce.tar.gz
scilab2c-7c6e03effe72ad9aac4c1056e9d09f281f52d7ce.tar.bz2
scilab2c-7c6e03effe72ad9aac4c1056e9d09f281f52d7ce.zip
change prototypes of matrixPow : if real on input, return real, not complex
-rw-r--r--scilab2c/src/matrixOperations/includes/matrixPow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scilab2c/src/matrixOperations/includes/matrixPow.h b/scilab2c/src/matrixOperations/includes/matrixPow.h
index 71a2d5d0..d9d5684b 100644
--- a/scilab2c/src/matrixOperations/includes/matrixPow.h
+++ b/scilab2c/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);