forked from insilico/plink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lapackf.h
20 lines (14 loc) · 797 Bytes
/
lapackf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//////////////////////////////////////////////////////////////////
// //
// PLINK (c) 2005-2008 Shaun Purcell //
// //
// This file is distributed under the GNU General Public //
// License, Version 2. Please see the file COPYING for more //
// details //
// //
//////////////////////////////////////////////////////////////////
#ifndef __LAPACK_FUNC_H__
#define __LAPACK_FUNC_H__
bool svd_lapack(int,vector_t & A, vector_t & S, matrix_t & V);
bool eigen_lapack(int,vector_t & A, vector_t & S, matrix_t & V);
#endif