pspp-cvs
[Top][All Lists]
Advanced

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

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


From: Jason H Stover
Subject: [Pspp-cvs] pspp/src/math/linreg linreg.h
Date: Fri, 12 May 2006 00:29:12 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Branch:         
Changes by:     Jason H Stover <address@hidden> 06/05/12 00:29:11

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

Log message:
        changed linreg_cache.coeff to **

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

Patches:
Index: pspp/src/math/linreg/linreg.h
diff -u pspp/src/math/linreg/linreg.h:1.12 pspp/src/math/linreg/linreg.h:1.13
--- pspp/src/math/linreg/linreg.h:1.12  Fri Apr 28 13:23:05 2006
+++ pspp/src/math/linreg/linreg.h       Fri May 12 00:29:11 2006
@@ -101,13 +101,13 @@
   int n_coeffs;
 
   /*
-    The variable struct is ignored during estimation. It is here so
-    the calling procedure can find the variable used in the model.
+     The variable struct is ignored during estimation. It is here so
+     the calling procedure can find the variable used in the model.
    */
   const struct variable *depvar;
 
   gsl_vector *residuals;
-  struct pspp_linreg_coeff *coeff;
+  struct pspp_linreg_coeff **coeff;
   int method;                  /* Method to use to estimate parameters. */
   /*
      Means and standard deviations of the variables.
@@ -139,7 +139,7 @@
                                   variables, i.e. \sum (x[i] - mean(x))^2. */
   double ssy;                  /* Centered sums of squares for dependent
                                   variable. 
-                               */
+                                */
   /*
      Covariance matrix of the parameter estimates.
    */
@@ -161,10 +161,9 @@
                     const void *, int);
   double (*residual) (const struct variable **,
                      const union value **,
-                     const union value *,
-                     const void *, int);
+                     const union value *, const void *, int);
   /*
-    Returns pointers to the variables used in the model.
+     Returns pointers to the variables used in the model.
    */
   int (*get_vars) (const void *, struct variable **);
   struct variable *resid;




reply via email to

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