aboutsummaryrefslogtreecommitdiff
path: root/src/eigenlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/eigenlib.h')
-rw-r--r--src/eigenlib.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/eigenlib.h b/src/eigenlib.h
index e9768c2..493907c 100644
--- a/src/eigenlib.h
+++ b/src/eigenlib.h
@@ -1,6 +1,6 @@
/*
- Genome-wide Efficient Mixed Model Association (GEMMA)
- Copyright (C) 2011 Xiang Zhou
+ Genome-wide Efficient Mixed Model Association (GEMMA)
+ Copyright (C) 2011-2017 Xiang Zhou
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -13,7 +13,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __EIGENLIB_H__
@@ -23,12 +23,10 @@
using namespace std;
-
void eigenlib_dgemm (const char *TransA, const char *TransB, const double alpha, const gsl_matrix *A, const gsl_matrix *B, const double beta, gsl_matrix *C);
void eigenlib_dgemv (const char *TransA, const double alpha, const gsl_matrix *A, const gsl_vector *x, const double beta, gsl_vector *y);
void eigenlib_invert(gsl_matrix *A);
void eigenlib_dsyr (const double alpha, const gsl_vector *b, gsl_matrix *A);
void eigenlib_eigensymm (const gsl_matrix *G, gsl_matrix *U, gsl_vector *eval);
-
#endif