template <typename IndexType, typename MH, typename MZ, typename VSR,
          typename VSI, typename MV, typename MT, typename MWV, typename VWORK>
    typename RestrictTo<IsRealGeMatrix<MH>::value
                     && IsRealGeMatrix<MZ>::value
                     && IsRealDenseVector<VSR>::value
                     && IsRealDenseVector<VSI>::value
                     && IsRealGeMatrix<MV>::value
                     && IsRealGeMatrix<MT>::value
                     && IsRealGeMatrix<MWV>::value
                     && IsRealDenseVector<VWORK>::value,
             void>::Type
    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.

template <typename IndexType, typename MH, typename MZ, typename VSH,
          typename MV, typename MT, typename MWV, typename VWORK>
    typename RestrictTo<IsComplexGeMatrix<MH>::value
                     && IsComplexGeMatrix<MZ>::value
                     && IsComplexDenseVector<VSH>::value
                     && IsComplexGeMatrix<MV>::value
                     && IsComplexGeMatrix<MT>::value
                     && IsComplexGeMatrix<MWV>::value
                     && IsComplexDenseVector<VWORK>::value,
             void>::Type
    laqr2(bool                      wantT,
          bool                      wantZ,
          IndexType                 kTop,
          IndexType                 kBot,
          IndexType                 nw,
          MH                        &&H,
          IndexType                 iLoZ,
          IndexType                 iHiZ,
          MZ                        &&Z,
          IndexType                 &ns,
          IndexType                 &nd,
          VSH                       &&sh,
          MV                        &&V,
          MT                        &&T,
          MWV                       &&WV,
          VWORK                     &&work);

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