X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fcovariance.h;h=cb83e151409224d1bf1d982a259179b9e79f5f49;hb=44a9abb173e2b0f33b011a853ae1603fda0ce29b;hp=fb59535718a5af952a8bd21a904a3213508f1203;hpb=b4a1fe2442a0b6fc8716e92574d33726d7170fe8;p=pspp-builds.git diff --git a/src/math/covariance.h b/src/math/covariance.h index fb595357..cb83e151 100644 --- a/src/math/covariance.h +++ b/src/math/covariance.h @@ -26,13 +26,14 @@ struct covariance; struct variable; struct ccase ; +struct categoricals; struct covariance * covariance_1pass_create (size_t n_vars, const struct variable *const *vars, const struct variable *wv, enum mv_class excl); struct covariance * covariance_2pass_create (size_t n_vars, const struct variable *const *vars, - size_t n_catvars, const struct variable *const *catvars, + struct categoricals *cats, const struct variable *wv, enum mv_class excl); void covariance_accumulate (struct covariance *, const struct ccase *);