X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flevene.h;h=70e04c34158bc8d33a8dc1e3b925715d1478a5dc;hb=f5c108becd49d78f4898cab11352291f5689d24e;hp=d0e44283cd3b575c66292008182cae9d15fc5855;hpb=164d1274fcb70c54897f2a03fc7c27152ed4821a;p=pspp diff --git a/src/math/levene.h b/src/math/levene.h index d0e44283cd..70e04c3415 100644 --- a/src/math/levene.h +++ b/src/math/levene.h @@ -1,4 +1,4 @@ -/* This file is part of GNU PSPP +/* This file is part of GNU PSPP Computes Levene test statistic. Copyright (C) 2004 Free Software Foundation, Inc. @@ -21,13 +21,13 @@ #if !levene_h #define levene_h 1 - +#include +#include #include -#include -/* Calculate the Levene statistic +/* Calculate the Levene statistic -The independent variable : v_indep; +The independent variable : v_indep; Number of dependent variables : n_dep; @@ -39,9 +39,10 @@ The dependent variables : v_dep; struct dictionary ; struct casefilter ; -void levene(const struct dictionary *dict, const struct casefile *cf, - struct variable *v_indep, size_t n_dep, struct variable **v_dep, - struct casefilter *filter); +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);