Home Browse Files
template <typename IndexType>
    void
    la_geamv(char                  trans,
             IndexType             m,
             IndexType             n,
             float                 alpha,
             const float           *A,
             IndexType             ldA,
             const float           *x,
             IndexType             incx,
             float                 beta,
             float                 *y,
             IndexType             incy);

Defined in namespace cxxlapack. Function la_geamv with 1 template parameters.

template <typename IndexType>
    void
    la_geamv(char                  trans,
             IndexType             m,
             IndexType             n,
             double                alpha,
             const double          *A,
             IndexType             ldA,
             const double          *x,
             IndexType             incx,
             double                beta,
             double                *y,
             IndexType             incy);

Defined in namespace cxxlapack. Function la_geamv with 1 template parameters.

template <typename IndexType>
    void
    la_geamv(char                          trans,
             IndexType                     m,
             IndexType                     n,
             float                         alpha,
             const std::complex<float >    *A,
             IndexType                     ldA,
             const std::complex<float >    *x,
             IndexType                     incx,
             float                         beta,
             float                         *y,
             IndexType                     incy);

Defined in namespace cxxlapack. Function la_geamv with 1 template parameters.

template <typename IndexType>
    void
    la_geamv(char                          trans,
             IndexType                     m,
             IndexType                     n,
             double                        alpha,
             const std::complex<double>    *A,
             IndexType                     ldA,
             const std::complex<double>    *x,
             IndexType                     incx,
             double                        beta,
             double                        *y,
             IndexType                     incy);

Defined in namespace cxxlapack. Function la_geamv with 1 template parameters.

Home

View document source

© 2011-2012 Michael Lehn