diff options
author | Peter Carbonetto | 2017-08-14 21:50:00 -0500 |
---|---|---|
committer | GitHub | 2017-08-14 21:50:00 -0500 |
commit | a6eca6837cf1eedb3a660dd434b05389c3ec4e95 (patch) | |
tree | e11ee6858159b53b2570273f9ba3d1ac882232f7 /src/mathfunc.h | |
parent | 3763f477e17a74942e1bf545aa9493d39bf9448e (diff) | |
parent | ff1252fe3db1ba639fe148f45b0408a4f182da0d (diff) | |
download | pangemma-a6eca6837cf1eedb3a660dd434b05389c3ec4e95.tar.gz |
Merge pull request #68 from genenetwork/issue26.
Tests and fixes https://github.com/genetics-statistics/GEMMA/issues/26.
Diffstat (limited to 'src/mathfunc.h')
-rw-r--r-- | src/mathfunc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mathfunc.h b/src/mathfunc.h index 29eafe4..b9f3c73 100644 --- a/src/mathfunc.h +++ b/src/mathfunc.h @@ -32,6 +32,7 @@ void CenterMatrix(gsl_matrix *G, const gsl_vector *w); void CenterMatrix(gsl_matrix *G, const gsl_matrix *W); void StandardizeMatrix(gsl_matrix *G); double ScaleMatrix(gsl_matrix *G); +double SumVector(const gsl_vector *v); double CenterVector(gsl_vector *y); void CenterVector(gsl_vector *y, const gsl_matrix *W); void StandardizeVector(gsl_vector *y); |