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.c


From: Jason H Stover
Subject: [Pspp-cvs] pspp/src/math/linreg linreg.c
Date: Wed, 19 Apr 2006 01:21:06 +0000

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

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

Log message:
        Added pointer to residual variable to linreg cache

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

Patches:
Index: pspp/src/math/linreg/linreg.c
diff -u pspp/src/math/linreg/linreg.c:1.9 pspp/src/math/linreg/linreg.c:1.10
--- pspp/src/math/linreg/linreg.c:1.9   Mon Apr 17 17:52:26 2006
+++ pspp/src/math/linreg/linreg.c       Wed Apr 19 01:21:06 2006
@@ -116,7 +116,8 @@
    */
   c->method = PSPP_LINREG_SWEEP;
   c->predict = pspp_linreg_predict;
-  c->residual = pspp_linreg_residual;
+  c->residual = pspp_linreg_residual; /* The procedure to comput my residuals. 
*/
+  c->resid = NULL; /* The variable storing my residuals. */
 
   return c;
 }




reply via email to

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