X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flevene.h;h=fd2aaf54236e88de94c9e97a118dd5a28808db7a;hb=ebfa4a33ff1d00563689d49d4f548af37b544a1c;hp=8f19deade2a33237648bf9f339ee50e727be2deb;hpb=ccf2f45c091ce1555b4e2a36186c501675c18a59;p=pspp diff --git a/src/levene.h b/src/levene.h index 8f19deade2..fd2aaf5423 100644 --- a/src/levene.h +++ b/src/levene.h @@ -16,15 +16,18 @@ 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., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !levene_h #define levene_h 1 #include "var.h" +#include "casefile.h" +/* What to do with missing values */ +enum lev_missing { LEV_ANALYSIS, LEV_LISTWISE }; /* Calculate the Levene statistic @@ -36,7 +39,10 @@ The dependent variables : v_dep; */ -void levene(struct variable *v_indep, int n_dep, struct variable **v_dep); + +void levene(const struct casefile *cf, + struct variable *v_indep, size_t n_dep, struct variable **v_dep, + enum lev_missing, is_missing_func);