X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flevene.h;h=c5e8bc3b4e9a15a49bc97d6837bb680cc06ceb4b;hb=49239dc60d3bfe5a29b6f08b176783dd72804d91;hp=67a4a1155b7813d6d84a37fe4987aada81e40f0e;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/math/levene.h b/src/math/levene.h index 67a4a115..c5e8bc3b 100644 --- a/src/math/levene.h +++ b/src/math/levene.h @@ -17,29 +17,15 @@ #if !levene_h #define levene_h 1 -#include -#include -#include +struct casereader; +struct variable; -/* Calculate the Levene statistic -The independent variable : v_indep; +enum mv_class; -Number of dependent variables : n_dep; +double +levene (struct casereader *rx, const struct variable *gvar, + const struct variable *var, const struct variable *wv, enum mv_class exclude ); -The dependent variables : v_dep; -*/ - - -struct dictionary ; -struct casefilter ; - -void levene(const struct dictionary *dict, struct casereader *, - const struct variable *v_indep, size_t n_dep, - const struct variable **v_dep, - enum mv_class exclude); - - - -#endif /* levene_h */ +#endif