Home Browse Files
template <typename IndexType, typename MT>
    IndexType
    laqr2_wsq(IndexType                 kTop,
              IndexType                 kBot,
              IndexType                 nw,
              const GeMatrix<MT>        &T);

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

template <typename IndexType, typename MH, typename MZ, typename VSR,
          typename VSI, typename MV, typename MT, typename MWV, typename VWORK>
    void
    laqr2(bool                      wantT,
          bool                      wantZ,
          IndexType                 kTop,
          IndexType                 kBot,
          IndexType                 nw,
          GeMatrix<MH>              &H,
          IndexType                 iLoZ,
          IndexType                 iHiZ,
          GeMatrix<MZ>              &Z,
          IndexType                 &ns,
          IndexType                 &nd,
          DenseVector<VSR>          &sr,
          DenseVector<VSI>          &si,
          GeMatrix<MV>              &V,
          GeMatrix<MT>              &T,
          GeMatrix<MWV>             &WV,
          DenseVector<VWORK>        &work);

Defined in namespace flens::lapack. Function laqr2 with 9 template parameters.

template <typename IndexType, typename MT>
    IndexType
    laqr2_wsq(IndexType                 kTop,
              IndexType                 kBot,
              IndexType                 nw,
              const MT                  &&T);

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

template <typename IndexType, typename MH, typename MZ, typename VSR,
          typename VSI, typename MV, typename MT, typename MWV, typename VWORK>
    void
    laqr2(bool                      wantT,
          bool                      wantZ,
          IndexType                 kTop,
          IndexType                 kBot,
          IndexType                 nw,
          MH                        &&H,
          IndexType                 iLoZ,
          IndexType                 iHiZ,
          MZ                        &&Z,
          IndexType                 &ns,
          IndexType                 &nd,
          VSR                       &&sr,
          VSI                       &&si,
          MV                        &&V,
          MT                        &&T,
          MWV                       &&WV,
          VWORK                     &&work);

Defined in namespace flens::lapack. Function laqr2 with 9 template parameters.

Home

View document source

© 2011-2012 Michael Lehn