Home Browse Files
template <typename MA, typename MB, typename VWORK>
    typename RestrictTo<IsRealGeMatrix<MA>::value
                     && IsRealGeMatrix<MB>::value
                     && IsRealDenseVector<VWORK>::value,
             typename RemoveRef<MA>::Type::IndexType>::Type
    ls(Transpose    trans,
       MA           &&A,
       MB           &&B,
       VWORK        &&work);

Defined in namespace flens::lapack. Function ls with 3 template parameters.

template <typename MA, typename MB, typename VWORK>
    typename RestrictTo<IsComplexGeMatrix<MA>::value
                     && IsComplexGeMatrix<MB>::value
                     && IsComplexDenseVector<VWORK>::value,
             typename RemoveRef<MA>::Type::IndexType>::Type
    ls(Transpose    trans,
       MA           &&A,
       MB           &&B,
       VWORK        &&work);

Defined in namespace flens::lapack. Function ls with 3 template parameters.

template <typename MA, typename MB>
    typename RestrictTo<IsGeMatrix<MA>::value
                     && IsGeMatrix<MB>::value,
             typename RemoveRef<MA>::Type::IndexType>::Type
    ls(Transpose    trans,
       MA           &&A,
       MB           &&B);

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

template <typename MA, typename VB, typename VWORK>
    typename RestrictTo<IsGeMatrix<MA>::value
                     && IsDenseVector<VB>::value
                     && IsDenseVector<VWORK>::value,
             typename RemoveRef<MA>::Type::IndexType>::Type
    ls(Transpose    trans,
       MA           &&A,
       VB           &&b,
       VWORK        &&work);

Defined in namespace flens::lapack. Function ls with 3 template parameters.

template <typename MA, typename VB>
    typename RestrictTo<IsGeMatrix<MA>::value
                     && IsDenseVector<VB>::value,
             typename RemoveRef<MA>::Type::IndexType>::Type
    ls(Transpose    trans,
       MA           &&A,
       VB           &&b);

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

Home

View document source

© 2011-2012 Michael Lehn