6b4425c07779416edc3916a077da3202f022ec63
[pspp-builds.git] / src / math / linreg / ChangeLog
1 2006-04-28  Jason Stover  <jhs@math.gcsu.edu>
2
3         * linreg.c (pspp_linreg_get_vars): New function. Fills an array with
4         pointers to the variables used in the model.
5
6         * linreg.h: Add a pointer called get_vars to pspp_linreg_get_vars()
7         to access variables in a model.
8
9         * coefficient.c (pspp_linreg_coeff_init): Set the variable
10         associated with the intercept term to NULL.
11
12 2006-04-26  Jason Stover  <jhs@math.gcsu.edu>
13
14         * linreg.h: Added a pointer to predicted values.
15
16         * linreg.c (pspp_linreg_cache_alloc): Initialized pointer to
17         predicted values.
18
19 2006-04-22  Jason Stover  <jhs@debs.hjklfdsss.org>
20
21         * predict.c (pspp_linreg_residual): Removed unnecessary cast of c_
22         to pspp_linreg_cache.
23
24 2006-04-18  Jason Stover  <jhs@math.gcsu.edu>
25
26         * linreg.h: Added a pointer to a variable to store the resduals.
27
28         * linreg.c (pspp_linreg_cache_alloc): Initialize the residual
29         variable pointer to NULL.
30
31 2006-04-17  Jason Stover  <jason@wonko.gcsu.edu>
32
33         * linreg.c (pspp_linreg_cache_free): Accept a pointer of type
34         void to match definition of trns_proc_func.
35
36 2006-04-17  Jason Stover  <jhs@math.gcsu.edu>
37
38         * linreg.c (pspp_linreg_cache_free): Return a bool.
39
40 Sat Apr 15 18:03:01 2006  Ben Pfaff  <blp@gnu.org>
41
42         * predict.c (pspp_linreg_predict): Change prototype to match
43         struct pspp_linreg_cache_struct's predict member.
44         * predict.c (pspp_linreg_residual): Change prototype to match
45         struct pspp_linreg_cache_struct's residual member.
46
47 Sat Apr 15 18:01:39 2006  Ben Pfaff  <blp@gnu.org>
48
49         * coefficient.c (pspp_linreg_get_coeff): Compare n_indeps against
50         0, instead of NULL, because it's an integer type.
51
52 Mon Apr  3 13:20:54 2006  Ben Pfaff  <blp@gnu.org>
53
54         * linreg.c (pspp_linreg): Move declaration before code for C90
55         compliance.
56
57 2006-04-09  Jason Stover  <jhs@math.gcsu.edu>
58
59         * predict.c (pspp_linreg_predict): Do something sensible even with
60         bad input.
61
62 2006-04-07  Jason Stover  <jhs@math.gcsu.edu>
63
64         * predict.c (pspp_linreg_predict): Improved handling of null
65         pointer args.
66
67         * predict.c (pspp_linreg_residuals): New function.
68
69         * coefficient.c: Improved handling of null pointer args.
70
71 2006-04-05  Jason Stover  <jhs@math.gcsu.edu>
72
73         * predict.c: New file. pspp_linreg_predict() uses a linear model
74         to return a predicted value of the dependent variable.
75
76         * coefficient.c: Added pspp_linreg_coeff_get_est() and
77         pspp_linreg_coeff_get_std_err() to access estimated values of
78         coefficients and standard errors.
79
80 2006-04-03  Jason Stover  <jhs@math.gcsu.edu>
81
82         * coefficient.c: Added pspp_linreg_get_coeff() to find a
83         coefficient corresponding to a variable/value combination.
84
85 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
86         
87         * Moved files from src directory