X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flevene.h;h=67a4a1155b7813d6d84a37fe4987aada81e40f0e;hb=1288f8123ea04686150b79b9e6a5d5d78c420353;hp=66944dafb434325aaaf4cc97a781a3f82e0be1c7;hpb=48386ee68a5283653435d05a9ea4e449710fd370;p=pspp-builds.git diff --git a/src/math/levene.h b/src/math/levene.h index 66944daf..67a4a115 100644 --- a/src/math/levene.h +++ b/src/math/levene.h @@ -1,33 +1,29 @@ -/* This file is part of GNU PSPP - Computes Levene test statistic. - +/* PSPP - a program for statistical analysis. Copyright (C) 2004 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #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,10 +35,10 @@ The dependent variables : v_dep; struct dictionary ; struct casefilter ; -void levene(const struct dictionary *dict, const struct casefile *cf, - const struct variable *v_indep, size_t n_dep, +void levene(const struct dictionary *dict, struct casereader *, + const struct variable *v_indep, size_t n_dep, const struct variable **v_dep, - struct casefilter *filter); + enum mv_class exclude);