REGRESSION: Implement /ORIGIN subcommand.
[pspp] / src / math / covariance.h
index a52cfced31ae22b8109b9c9a5f29205c1fc13fd1..18f1137a79cc6e82d04db5448c3130fcfb81efa6 100644 (file)
@@ -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 *);