Home Browse Files
template <typename IndexType, typename Alpha, typename VX>
    void
    scal(IndexType      n,
         const Alpha    &alpha,
         VX             *x,
         IndexType      incX);

Defined in namespace cxxblas. Function scal with 3 template parameters.

template <typename IndexType, typename Alpha, typename MA>
    void
    gescal(IndexType    m,
           IndexType    n,
           const Alpha  &alpha,
           MA           *A,
           IndexType    incRowA,
           IndexType    incColA);

Defined in namespace cxxblas. Function gescal with 3 template parameters.

template <typename IndexType, typename Alpha, typename MA>
    void
    trscal(IndexType    m,
           IndexType    n,
           const Alpha  &alpha,
           bool         lowerA,
           bool         unitDiagA,
           MA           *A,
           IndexType    incRowA,
           IndexType    incColA);

Defined in namespace cxxblas. Function trscal with 3 template parameters.

Home

View document source

© 2011-2015 Michael Lehn