pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/math/linreg ChangeLog linreg.h


From: Jason H Stover
Subject: [Pspp-cvs] pspp/src/math/linreg ChangeLog linreg.h
Date: Wed, 19 Apr 2006 01:20:33 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Branch:         
Changes by:     Jason H Stover <address@hidden> 06/04/19 01:20:33

Modified files:
        src/math/linreg: ChangeLog linreg.h 

Log message:
        Added pointer to residual variable to linreg cache

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/pspp/src/math/linreg/ChangeLog.diff?tr1=1.8&tr2=1.9&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/pspp/pspp/src/math/linreg/linreg.h.diff?tr1=1.9&tr2=1.10&r1=text&r2=text

Patches:
Index: pspp/src/math/linreg/ChangeLog
diff -u pspp/src/math/linreg/ChangeLog:1.8 pspp/src/math/linreg/ChangeLog:1.9
--- pspp/src/math/linreg/ChangeLog:1.8  Mon Apr 17 17:52:26 2006
+++ pspp/src/math/linreg/ChangeLog      Wed Apr 19 01:20:33 2006
@@ -1,3 +1,10 @@
+2006-04-18  Jason Stover  <address@hidden>
+
+       * linreg.h: Added a pointer to a variable to store the resduals.
+
+       * linreg.c (pspp_linreg_cache_alloc): Initialize the residual
+       variable pointer to NULL.
+
 2006-04-17  Jason Stover  <address@hidden>
 
        * linreg.c (pspp_linreg_cache_free): Accept a pointer of type
Index: pspp/src/math/linreg/linreg.h
diff -u pspp/src/math/linreg/linreg.h:1.9 pspp/src/math/linreg/linreg.h:1.10
--- pspp/src/math/linreg/linreg.h:1.9   Mon Apr 17 17:52:26 2006
+++ pspp/src/math/linreg/linreg.h       Wed Apr 19 01:20:33 2006
@@ -42,8 +42,6 @@
  */
 struct pspp_linreg_opts_struct
 {
-  int resid;                   /* Should the residuals be returned? */
-
   int get_depvar_mean_std;
   int *get_indep_mean_std;     /* Array of booleans
                                   dictating which
@@ -165,6 +163,7 @@
                      const union value **,
                      const union value *,
                      const void *, int);
+  struct variable *resid;
 };
 
 typedef struct pspp_linreg_cache_struct pspp_linreg_cache;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]