po: Update translations from translationproject.org.
[pspp] / src / math / covariance.h
index 7345097195a6b207e6c9cd2e5e8d317ce43de885..18f1137a79cc6e82d04db5448c3130fcfb81efa6 100644 (file)
@@ -27,20 +27,20 @@ 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 *);
 void covariance_accumulate_pass2 (struct covariance *, const struct ccase *);
 
 gsl_matrix * covariance_calculate (struct covariance *);
-gsl_matrix * covariance_calculate_unnormalized (struct covariance *);
+const gsl_matrix * covariance_calculate_unnormalized (struct covariance *);
 
 void covariance_destroy (struct covariance *cov);