diff options
Diffstat (limited to 'src/matrixOperations/includes/chol.h')
-rw-r--r-- | src/matrixOperations/includes/chol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/matrixOperations/includes/chol.h b/src/matrixOperations/includes/chol.h index 54daf305..4b2655fc 100644 --- a/src/matrixOperations/includes/chol.h +++ b/src/matrixOperations/includes/chol.h @@ -25,11 +25,11 @@ void dchola(double *in, int size, double *out); float schols(float in); void schola(float *in, int size, float *out); -#define zchols(in) dchols(zreals(in)) +#define zchols(in) DoubleComplex(dchols(zreals(in)),0) void zchola (doubleComplex *in, int size, doubleComplex *out); -#define cchols(in) schols(creals(in)) +#define cchols(in) FloatComplex(schols(creals(in)),0) void cchola(floatComplex *in, int size, floatComplex *out); |