X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fcovariance.h;h=18f1137a79cc6e82d04db5448c3130fcfb81efa6;hb=12c7324445fc5fd00d0536172373ddd8b253d0e2;hp=a52cfced31ae22b8109b9c9a5f29205c1fc13fd1;hpb=3dd0f6ae0d5eb73a2270a243e443c4ae03c2c16e;p=pspp diff --git a/src/math/covariance.h b/src/math/covariance.h index a52cfced31..18f1137a79 100644 --- a/src/math/covariance.h +++ b/src/math/covariance.h @@ -28,12 +28,12 @@ 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); + const struct variable *wv, enum mv_class excl, bool centered); struct covariance * covariance_2pass_create (size_t n_vars, const struct variable *const *vars, struct categoricals *cats, - const struct variable *wv, enum mv_class excl); + const struct variable *wv, enum mv_class excl, bool centered); void covariance_accumulate (struct covariance *, const struct ccase *); void covariance_accumulate_pass1 (struct covariance *, const struct ccase *);