Home Browse Files
template <typename IndexType, typename Alpha, typename TA, typename TX,
          typename Beta, typename TY>
    void
    gemv(IndexType    m,
         IndexType    n,
         const Alpha  &alpha,
         bool         transA,
         bool         conjA,
         const TA     *A,
         IndexType    incRowA,
         IndexType    incColA,
         const TX     *x,
         IndexType    incX,
         const Beta   &beta,
         TY           *y,
         IndexType    incY);

Defined in namespace cxxblas. Function gemv with 6 template parameters.

Home

View document source

© 2011-2015 Michael Lehn