Home Browse Files
template <typename IndexType>
    IndexType
    heevr(char                  jobz,
          char                  range,
          char                  uplo,
          IndexType             n,
          std::complex<float >  *A,
          IndexType             ldA,
          float                 vl,
          float                 vu,
          IndexType             il,
          IndexType             iu,
          float                 abstol,
          IndexType             &m,
          float                 *w,
          std::complex<float >  *Z,
          IndexType             ldZ,
          std::complex<float >  *work,
          IndexType             lWork,
          float                 *rWork,
          IndexType             lrWork,
          IndexType             *iWork,
          IndexType             liWork);

Defined in namespace cxxlapack. Function heevr with 1 template parameters.

template <typename IndexType>
    IndexType
    heevr(char                  jobz,
          char                  range,
          char                  uplo,
          IndexType             n,
          std::complex<double>  *A,
          IndexType             ldA,
          double                vl,
          double                vu,
          IndexType             il,
          IndexType             iu,
          double                abstol,
          IndexType             &m,
          double                *w,
          std::complex<double>  *Z,
          IndexType             ldZ,
          std::complex<double>  *work,
          IndexType             lWork,
          double                *rWork,
          IndexType             lrWork,
          IndexType             *iWork,
          IndexType             liWork);

Defined in namespace cxxlapack. Function heevr with 1 template parameters.

Home

View document source

© 2011-2012 Michael Lehn