Home Browse Files
template <typename ALPHA, typename VX, typename VY, typename MA>
    typename RestrictTo<DefaultEval<MatrixClosureRU<VX, VY> >::value
                     && IsVector<VX>::value
                     && IsVector<VY>::value
                     && IsGeneralMatrix<MA>::value,
             void>::Type
    axpy(Transpose trans, const ALPHA &alpha,
         const MatrixClosureRU<VX, VY> &xyt, MA &A);

Defined in namespace flens::blas. Function axpy with 4 template parameters.

template <typename ALPHA, typename VX, typename VY, typename MA>
    typename RestrictTo<DefaultEval<MatrixClosureRC<VX, VY> >::value
                     && IsVector<VX>::value
                     && IsVector<VY>::value
                     && IsGeneralMatrix<MA>::value,
             void>::Type
    axpy(Transpose trans, const ALPHA &alpha,
         const MatrixClosureRC<VX, VY> &xyt, MA &A);

Defined in namespace flens::blas. Function axpy with 4 template parameters.

template <typename ALPHA, typename VX, typename VY, typename MA>
    typename RestrictTo<DefaultEval<MatrixClosureRU<VX, VY> >::value
                     && IsVector<VX>::value
                     && IsVector<VY>::value
                     && IsSymmetricMatrix<MA>::value,
             void>::Type
    axpy(Transpose trans, const ALPHA &alpha,
         const MatrixClosureRU<VX, VY> &xxt, MA &A);

Defined in namespace flens::blas. Function axpy with 4 template parameters.

template <typename ALPHA, typename VX, typename VY, typename MA>
    typename RestrictTo<DefaultEval<MatrixClosureRC<VX, VY> >::value
                     && IsVector<VX>::value
                     && IsVector<VY>::value
                     && IsHermitianMatrix<MA>::value,
             void>::Type
    axpy(Transpose trans, const ALPHA &alpha,
         const MatrixClosureRC<VX, VY> &xxh, MA &A);

Defined in namespace flens::blas. Function axpy with 4 template parameters.

Home

View document source

© 2011-2015 Michael Lehn