Home Browse Files
template <typename IndexType, typename MH>
    IndexType
    hseqr_wsq(HSEQR::Job            job,
              HSEQR::ComputeZ       computeZ,
              IndexType             iLo,
              IndexType             iHi,
              const GeMatrix<MH>    &H);

Defined in namespace flens::lapack. Function hseqr_wsq with 2 template parameters.

template <typename IndexType, typename MH, typename VWR, typename VWI,
          typename MZ, typename VWORK>
    IndexType
    hseqr(HSEQR::Job                job,
          HSEQR::ComputeZ           compZ,
          IndexType                 iLo,
          IndexType                 iHi,
          GeMatrix<MH>              &H,
          DenseVector<VWR>          &wr,
          DenseVector<VWI>          &wi,
          GeMatrix<MZ>              &Z,
          DenseVector<VWORK>        &work);

Defined in namespace flens::lapack. Function hseqr with 6 template parameters.

template <typename IndexType, typename MH>
    IndexType
    hseqr_wsq(HSEQR::Job        job,
              HSEQR::ComputeZ   computeZ,
              IndexType         iLo,
              IndexType         iHi,
              const MH          &&H);

Defined in namespace flens::lapack. Function hseqr_wsq with 2 template parameters.

template <typename IndexType, typename MH, typename VWR, typename VWI,
          typename MZ, typename VWORK>
    IndexType
    hseqr(HSEQR::Job            job,
          HSEQR::ComputeZ       compZ,
          IndexType             iLo,
          IndexType             iHi,
          MH                    &&H,
          VWR                   &&wr,
          VWI                   &&wi,
          MZ                    &&Z,
          VWORK                 &&work);

Defined in namespace flens::lapack. Function hseqr with 6 template parameters.

Home

View document source

© 2011-2012 Michael Lehn