/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* gog-lin-reg.h :
*
* Copyright (C) 2005 Jean Brefort (jean.brefort@normalesup.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef GOG_LIN_REG_H
#define GOG_LIN_REG_H
#include <goffice/graph/gog-reg-curve.h>
#include <goffice/utils/go-regression.h>
G_BEGIN_DECLS
typedef struct {
GogRegCurve base;
gboolean affine;
double **x_vals, *y_vals;
int dims;
} GogLinRegCurve;
typedef struct {
GogRegCurveClass base;
RegressionResult (*lin_reg_func) (double **xss, int dim,
const double *ys, int n,
gboolean affine,
double *res,
go_regression_stat_t *stat);
int (*build_values) (GogLinRegCurve *rc, double const *x_vals,
double const *y_vals, int n);
} GogLinRegCurveClass;
#define GOG_LIN_REG_CURVE_TYPE (gog_lin_reg_curve_get_type ())
#define GOG_LIN_REG_CURVE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_LIN_REG_CURVE_TYPE, GogLinRegCurve))
#define GOG_IS_LIN_REG_CURVE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_LIN_REG_CURVE_TYPE))
GType gog_lin_reg_curve_get_type (void);
void gog_lin_reg_curve_register_type (GTypeModule *module);
G_END_DECLS
#endif /* GOG_LIN_REG_H */
syntax highlighted by Code2HTML, v. 0.9.1