Home Browse Files
template <typename ALPHA, typename VX, typename VY>
    typename RestrictTo<IsDenseVector<VX>::value
                     && IsDenseVector<VY>::value,
             void>::Type
    raxpy(const ALPHA &alpha, const VX &x, VY &&y);

Defined in namespace flens::blas. Function raxpy with 3 template parameters.

template <typename ALPHA, typename MA, typename MB>
    typename RestrictTo<IsGeMatrix<MA>::value
                     && IsGeMatrix<MB>::value,
             void>::Type
    raxpy(Transpose trans, const ALPHA &alpha, const MA &A, MB &&B);

Defined in namespace flens::blas. Function raxpy with 3 template parameters.

template <typename ALPHA, typename VX, typename VY>
    typename RestrictTo<IsDenseVector<VX>::value
                     && IsDenseVector<VY>::value,
             void>::Type
    racxpy(const ALPHA &alpha, const VX &x, VY &&y);

Defined in namespace flens::blas. Function racxpy with 3 template parameters.

Home

View document source

© 2011-2015 Michael Lehn