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

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

template <typename ALPHA, typename VX, typename VY>
    typename RestrictTo<DefaultEval<VectorClosureOpConj<VX> >::value,
             void>::Type
    copyScal(const ALPHA &alpha, const VectorClosureOpConj<VX> &x,
             Vector<VY> &y);

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

template <typename ALPHA, typename OP, typename VXL, typename VXR, typename VY>
    typename RestrictTo<VCDefaultEval<OP, VXL, VXR>::value,
             void>::Type
    copyScal(const ALPHA &alpha, const VectorClosure<OP, VXL, VXR> &x,
             Vector<VY> &y);

Defined in namespace flens::blas. Function copyScal with 5 template parameters.

template <typename ALPHA, typename MA, typename MB>
    typename RestrictTo<!IsMatrixClosure<Matrix<MA> >::value,
             void>::Type
    copyScal(Transpose trans, const ALPHA &alpha, const Matrix<MA> &A,
             Matrix<MB> &B);

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

template <typename ALPHA, typename MA, typename MB>
    typename RestrictTo<DefaultEval<MatrixClosureOpTrans<MA> >::value,
             void>::Type
    copyScal(Transpose trans, const ALPHA &alpha,
             const MatrixClosureOpTrans<MA> &A, Matrix<MB> &B);

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

template <typename ALPHA, typename MA, typename MB>
    typename RestrictTo<DefaultEval<MatrixClosureOpConj<MA> >::value,
             void>::Type
    copyScal(Transpose trans, const ALPHA &alpha,
             const MatrixClosureOpConj<MA> &A, Matrix<MB> &B);

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

template <typename ALPHA, typename OP, typename MAL, typename MAR, typename MB>
    typename RestrictTo<MCDefaultEval<OP, MAL, MAR>::value,
             void>::Type
    copyScal(Transpose trans, const ALPHA &alpha,
             const MatrixClosure<OP, MAL, MAR> &A, Matrix<MB> &B);

Defined in namespace flens::blas. Function copyScal with 5 template parameters.

Home

View document source

© 2011-2015 Michael Lehn