scale variables work more sanely
[pspp] / src / math / linreg.c
index f88a18a5b804fa5861c7c45d5762e375c43274ed..d417599babd94f9fa9afc9030b457ca8e03bfcb4 100644 (file)
@@ -445,7 +445,7 @@ linreg_fit (const gsl_matrix *cov, struct linreg *l)
       linreg_fit_qr (cov, l);
     }
   else
-#endif    
+#endif
     {
       gsl_matrix *params = gsl_matrix_calloc (cov->size1, cov->size2);
       gsl_matrix_memcpy (params, cov);
@@ -530,19 +530,19 @@ double linreg_sst (const struct linreg *c)
 }
 
 double
-linreg_dfmodel ( const struct linreg *c)
+linreg_dfmodel (const struct linreg *c)
 {
   return c->dfm;
 }
 
 double
-linreg_dferror ( const struct linreg *c)
+linreg_dferror (const struct linreg *c)
 {
   return c->dfe;
 }
 
 double
-linreg_dftotal ( const struct linreg *c)
+linreg_dftotal (const struct linreg *c)
 {
   return c->dft;
 }