From 3b470c8327bdafb133a11f5e7257ccb270f8c1c9 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 4 Aug 2009 14:49:49 +0000 Subject: added stdevf functions , interfaces , header, tests , everything --- src/c/statisticsFunctions/includes/stdevf.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/c/statisticsFunctions/includes/stdevf.h') diff --git a/src/c/statisticsFunctions/includes/stdevf.h b/src/c/statisticsFunctions/includes/stdevf.h index 5ccec182..c9e48599 100644 --- a/src/c/statisticsFunctions/includes/stdevf.h +++ b/src/c/statisticsFunctions/includes/stdevf.h @@ -111,6 +111,16 @@ EXTERN_STATFUNC doubleComplex zstdevfa(doubleComplex *in1, int lines, int column EXTERN_STATFUNC void zrowstdevfa(doubleComplex *in1, int lines, int columns, doubleComplex *in2, doubleComplex* out); EXTERN_STATFUNC void zcolumnstdevfa(doubleComplex *in1, int lines, int columns, doubleComplex *in2, doubleComplex* out); +/* +** convenience functions +*/ + +EXTERN_STATFUNC floatComplex cstdevfcs(floatComplex *in1, int lines, int columns, float *in2); +EXTERN_STATFUNC floatComplex cstdevfsc(float *in1, int lines, int columns, floatComplex *in2); + +EXTERN_STATFUNC doubleComplex zstdevfzd(doubleComplex *in1, int lines, int columns, double *in2); +EXTERN_STATFUNC doubleComplex zstdevfdz(double *in1, int lines, int columns, doubleComplex *in2); + #ifdef __cplusplus } /* extern "C" */ #endif -- cgit