From 7c6e03effe72ad9aac4c1056e9d09f281f52d7ce Mon Sep 17 00:00:00 2001 From: torset Date: Fri, 20 Feb 2009 10:20:57 +0000 Subject: change prototypes of matrixPow : if real on input, return real, not complex --- scilab2c/src/matrixOperations/includes/matrixPow.h | 4 ++-- 1 file 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); -- cgit