summaryrefslogtreecommitdiff
path: root/src/matrixOperations/includes/logm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrixOperations/includes/logm.h')
-rw-r--r--src/matrixOperations/includes/logm.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/matrixOperations/includes/logm.h b/src/matrixOperations/includes/logm.h
index 43b5406f..7bffa54a 100644
--- a/src/matrixOperations/includes/logm.h
+++ b/src/matrixOperations/includes/logm.h
@@ -18,6 +18,12 @@
#include "doubleComplex.h"
+void slogma (float* in, int size, floatComplex* out);
+
+void dlogma (double* in, int size, doubleComplex* out);
+
+void clogma (floatComplex* in, int size, floatComplex* out);
+
void zlogma (doubleComplex* in, int size, doubleComplex* out);
-#endif /* !__LOGM_H__ */
+#endif /* __LOGM_H__ */