summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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);