arpack.h

Go to the documentation of this file.
00001 /*
00002  * This program is free software; you can redistribute it and/or modify
00003  * it under the terms of the GNU General Public License as published by
00004  * the Free Software Foundation; either version 3 of the License, or
00005  * (at your option) any later version.
00006  *
00007  * Written (W) 2011 Sergey Lisitsyn
00008  * Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
00009  */
00010 
00011 #ifndef ARPACK_H_
00012 #define ARPACK_H_
00013 #include <shogun/lib/config.h>
00014 #ifdef HAVE_ARPACK
00015 #ifdef HAVE_LAPACK
00016 
00017 namespace shogun
00018 {
00060 void arpack_dsxupd(double* matrix, double* rhs, bool is_rhs_diag, int n, int nev,
00061                    const char* which, bool use_superlu, int mode, bool pos, bool cov,
00062                    double shift, double tolerance, double* eigenvalues,
00063                    double* eigenvectors, int& status);
00064 }
00065 #endif /* HAVE_LAPACK */
00066 #endif /* HAVE_ARPACK */
00067 #endif /* ARPACK_H_ */
00068 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation