From 5156ef12d53f25d81804b39490b69deaff5e1ea4 Mon Sep 17 00:00:00 2001 From: Tim Behrens <behrens@fmrib.ox.ac.uk> Date: Fri, 4 Jun 2004 15:51:52 +0000 Subject: [PATCH] *** empty log message *** --- miscmaths.cc | 2 +- miscmaths.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miscmaths.cc b/miscmaths.cc index 53ee0b5..e6f0237 100644 --- a/miscmaths.cc +++ b/miscmaths.cc @@ -1669,7 +1669,7 @@ ReturnMatrix read_vest(string p_fname) return p_mat; } -void OLS(const Matrix& data,const Matrix& des,const Matrix& tc, Matrix& cope,Matrix& varcope){ +void ols(const Matrix& data,const Matrix& des,const Matrix& tc, Matrix& cope,Matrix& varcope){ // ols // data is t x v // des is t x ev (design matrix) diff --git a/miscmaths.h b/miscmaths.h index a75c198..123d4ba 100644 --- a/miscmaths.h +++ b/miscmaths.h @@ -202,7 +202,7 @@ namespace MISCMATHS { // tc is cons x ev (contrast matrix) // cope and varcope will be cons x v // but will be resized if they are wrong - void OLS(const Matrix& data,const Matrix& des,const Matrix& tc, Matrix& cope,Matrix& varcope); + void ols(const Matrix& data,const Matrix& des,const Matrix& tc, Matrix& cope,Matrix& varcope); int ols_dof(const Matrix& des); -- GitLab