Home Browse Files
template <typename IndexType, typename TX, typename TY>
    void
    copy(IndexType    n,
         bool         conjX,
         const TX     *x,
         IndexType    incX,
         TY           *y,
         IndexType    incY);

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

template <typename IndexType, typename TX, typename TY>
    void
    copy(IndexType    n,
         const TX     *x,
         IndexType    incX,
         TY           *y,
         IndexType    incY);

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

template <typename IndexType, typename MX, typename MY>
    void
    gecopy(IndexType      m,
           IndexType      n,
           bool           transX,
           bool           conjX,
           const MX       *X,
           IndexType      incRowX,
           IndexType      incColX,
           MY             *Y,
           IndexType      incRowY,
           IndexType      incColY);

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

template <typename IndexType, typename MX, typename MY>
    void
    gecopy(IndexType      m,
           IndexType      n,
           const MX       *X,
           IndexType      incRowX,
           IndexType      incColX,
           MY             *Y,
           IndexType      incRowY,
           IndexType      incColY);

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

template <typename IndexType, typename MA, typename MB>
    void
    trcopy(IndexType      m,
           IndexType      n,
           bool           lowerA,
           bool           transA,
           bool           conjA,
           bool           unitDiagA,
           const MA       *A,
           IndexType      incRowA,
           IndexType      incColA,
           MB             *B,
           IndexType      incRowB,
           IndexType      incColB);

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

Home

View document source

© 2011-2015 Michael Lehn