~ubuntu-branches/ubuntu/utopic/r-cran-rcpparmadillo/utopic

« back to all changes in this revision

Viewing changes to inst/include/armadillo_bits/sp_auxlib_bones.hpp

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2014-07-03 08:50:31 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20140703085031-b9w69d883j36gx8q
Tags: 0.4.320.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
  // eigs_sym() via ARPACK
28
28
  
29
29
  template<typename eT, typename T1>
30
 
  inline static bool eigs_sym(Col<eT>& eigval, Mat<eT>& eigvec, const SpBase<eT, T1>& X, const uword n_eigvals, const char* form_str);
 
30
  inline static bool eigs_sym(Col<eT>& eigval, Mat<eT>& eigvec, const SpBase<eT, T1>& X, const uword n_eigvals, const char* form_str, const eT default_tol);
31
31
  
32
32
  
33
33
  //
34
34
  // eigs_gen() via ARPACK
35
35
  
36
36
  template<typename T, typename T1>
37
 
  inline static bool eigs_gen(Col< std::complex<T> >& eigval, Mat< std::complex<T> >& eigvec, const SpBase<T, T1>& X, const uword n_eigvals, const char* form_str);
 
37
  inline static bool eigs_gen(Col< std::complex<T> >& eigval, Mat< std::complex<T> >& eigvec, const SpBase<T, T1>& X, const uword n_eigvals, const char* form_str, const T default_tol);
38
38
  
39
39
  template<typename T, typename T1>
40
 
  inline static bool eigs_gen(Col< std::complex<T> >& eigval, Mat< std::complex<T> >& eigvec, const SpBase< std::complex<T>, T1>& X, const uword n_eigvals, const char* form_str);
 
40
  inline static bool eigs_gen(Col< std::complex<T> >& eigval, Mat< std::complex<T> >& eigvec, const SpBase< std::complex<T>, T1>& X, const uword n_eigvals, const char* form_str, const T default_tol);
41
41
  
42
42
  
43
43
  private: