Home Browse Files
template <typename IndexType, typename MH>
    IndexType
    laqr0_wsq(bool                  wantT,
              bool                  wantZ,
              IndexType             iLo,
              IndexType             iHi,
              const GeMatrix<MH>    &H);

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

template <typename IndexType, typename MH, typename VWR, typename VWI,
          typename MZ, typename VWORK>
    IndexType
    laqr0(bool                      wantT,
          bool                      wantZ,
          IndexType                 iLo,
          IndexType                 iHi,
          GeMatrix<MH>              &H,
          DenseVector<VWR>          &wr,
          DenseVector<VWI>          &wi,
          IndexType                 iLoZ,
          IndexType                 iHiZ,
          GeMatrix<MZ>              &Z,
          DenseVector<VWORK>        &work);

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

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

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

template <typename IndexType, typename MH, typename VWR, typename VWI,
          typename MZ, typename VWORK>
    IndexType
    laqr0(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 laqr0 with 6 template parameters.

Home

View document source

© 2011-2012 Michael Lehn