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
    laqr4(bool                      wantT,
          bool                      wantZ,
          IndexType                 iLo,
          IndexType                 iHi,
          MH                        &&H,
          VWR                       &&wr,
          VWI                       &&wi,
          IndexType                 iLoZ,
          IndexType                 iHiZ,
          MZ                        &&Z,
          VWORK                     &&work);

Defined in namespace flens::lapack. Function laqr4 with 6 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
    laqr4(bool                      wantT,
          bool                      wantZ,
          IndexType                 iLo,
          IndexType                 iHi,
          MH                        &&H,
          VW                        &&w,
          IndexType                 iLoZ,
          IndexType                 iHiZ,
          MZ                        &&Z,
          VWORK                     &&work);

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

template <typename IndexType, typename MH>
    IndexType
    laqr4_wsq(bool                  wantT,
              bool                  wantZ,
              IndexType             iLo,
              IndexType             iHi,
              const GeMatrix<MH>    &H);

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

Home

View document source

© 2011-2015 Michael Lehn