Home Browse Files
template <typename MA, typename NORMA, typename RCOND,
          typename VWORK, typename VIWORK>
    typename RestrictTo<IsRealGeMatrix<MA>::value
                     && IsNotComplex<NORMA>::value
                     && IsNotComplex<RCOND>::value
                     && IsRealDenseVector<VWORK>::value
                     && IsIntegerDenseVector<VIWORK>::value,
             void>::Type
    con(Norm         norm,
        const MA     &A,
        const NORMA  &normA,
        RCOND        &rCond,
        VWORK        &&work,
        VIWORK       &&iwork);

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

template <typename MA, typename NORMA, typename RCOND,
          typename VWORK, typename VRWORK>
    typename RestrictTo<IsComplexGeMatrix<MA>::value
                     && IsNotComplex<NORMA>::value
                     && IsNotComplex<RCOND>::value
                     && IsComplexDenseVector<VWORK>::value
                     && IsRealDenseVector<VRWORK>::value,
             void>::Type
    con(Norm         norm,
        const MA     &A,
        const NORMA  &normA,
        RCOND        &rCond,
        VWORK        &&work,
        VRWORK       &&rwork);

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

Home

View document source

© 2011-2015 Michael Lehn