Home Browse Files
template <typename IndexType, typename MH, typename VWR, typename VWI,
          typename MZ, typename VWORK>
    typename RestrictTo<IsRealGeMatrix<MH>::value
                     && IsRealDenseVector<VWR>::value
                     && IsRealDenseVector<VWI>::value
                     && IsRealGeMatrix<MZ>::value
                     && IsRealDenseVector<VWORK>::value,
             IndexType>::Type
    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.

template <typename IndexType, typename MH>
    typename RestrictTo<IsRealGeMatrix<MH>::value,
             IndexType>::Type
    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 VW, typename MZ,
          typename VWORK>
    typename RestrictTo<IsComplexGeMatrix<MH>::value
                     && IsComplexDenseVector<VW>::value
                     && IsComplexGeMatrix<MZ>::value
                     && IsComplexDenseVector<VWORK>::value,
             IndexType>::Type
    hseqr(HSEQR::Job                job,
          HSEQR::ComputeZ           compZ,
          IndexType                 iLo,
          IndexType                 iHi,
          MH                        &&H,
          VW                        &&w,
          MZ                        &&Z,
          VWORK                     &&work);

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

template <typename IndexType, typename MH>
    typename RestrictTo<IsComplexGeMatrix<MH>::value,
             IndexType>::Type
    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.

Home

View document source

© 2011-2015 Michael Lehn