Home Browse Files
template <typename A, typename B, typename T>
    void
    rotg(A &a,
         B &b,
         T &c,
         T &s);

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

template <typename TA, typename TB, typename T>
    void
    rotg(std::complex<TA>   &a,
         std::complex<TB>   &b,
         T                  &c,
         std::complex<T>    &s);

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

template <typename IndexType, typename VX, typename VY, typename T>
    void
    rot(IndexType   n,
        VX          *x,
        IndexType   incX,
        VY          *y,
        IndexType   incY,
        T           c,
        T           s);

Defined in namespace cxxblas. Function rot with 4 template parameters.

template <typename IndexType, typename X, typename Y, typename T>
    void
    rot(IndexType              n,
        std::complex<X>        *x,
        IndexType              incX,
        std::complex<Y>        *y,
        IndexType              incY,
        T                      c,
        const std::complex<T>  &s);

Defined in namespace cxxblas. Function rot with 4 template parameters.

Home

View document source

© 2011-2015 Michael Lehn