summaryrefslogtreecommitdiff
path: root/src/matrixOperations/includes/chol.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrixOperations/includes/chol.h')
-rw-r--r--src/matrixOperations/includes/chol.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/matrixOperations/includes/chol.h b/src/matrixOperations/includes/chol.h
index 03a678d8..54daf305 100644
--- a/src/matrixOperations/includes/chol.h
+++ b/src/matrixOperations/includes/chol.h
@@ -19,15 +19,18 @@
-double dchols (double in);
-void dchola (double *in, int size, double *out);
+double dchols(double in);
+void dchola(double *in, int size, double *out);
-float schols (float in);
-void schola (float *in, int size, float *out);
+float schols(float in);
+void schola(float *in, int size, float *out);
+#define zchols(in) dchols(zreals(in))
+
void zchola (doubleComplex *in, int size, doubleComplex *out);
-void cchola (floatComplex *in, int size, floatComplex *out);
+#define cchols(in) schols(creals(in))
+void cchola(floatComplex *in, int size, floatComplex *out);
#endif /* __CHOL_H__ */