X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fcovariance.h;h=18f1137a79cc6e82d04db5448c3130fcfb81efa6;hb=08767a7c0d9b6f719c307baa8d264f989a65d7a3;hp=2aee9f18b9e0c80a9fa684d58844bebe4442f4a2;hpb=e2da62d735c597afeef2e0e9b36e5a4a83d7da94;p=pspp diff --git a/src/math/covariance.h b/src/math/covariance.h index 2aee9f18b9..18f1137a79 100644 --- a/src/math/covariance.h +++ b/src/math/covariance.h @@ -27,13 +27,13 @@ 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_1pass_create (size_t n_vars, const struct variable *const *vars, + 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 *);