Home Browse Files
template <typename IndexType, typename ALPHA, typename VX, typename VY,
          typename MA>
    void
    her2(StorageOrder order,  StorageUpLo upLo,
        IndexType n,
        const ALPHA &alpha,
        const VX *x, IndexType incX,
        const VY *y, IndexType incY,
        MA *A, IndexType ldA);

Defined in namespace cxxblas. Function her2 with 5 template parameters.

template <typename IndexType>
typename If<IndexType>::isBlasCompatibleInteger
    her2(StorageOrder order, StorageUpLo upLo,
         IndexType n,
         float alpha,
         const ComplexFloat *x, IndexType incX,
         const ComplexFloat *y, IndexType incY,
         ComplexFloat *A, IndexType ldA);

Defined in namespace cxxblas. Function her2 with 1 template parameters.

template <typename IndexType>
typename If<IndexType>::isBlasCompatibleInteger
    her2(StorageOrder order, StorageUpLo upLo,
         IndexType n,
         double alpha,
         const ComplexDouble *x, IndexType incX,
         const ComplexDouble *y, IndexType incY,
         ComplexDouble *A, IndexType ldA);

Defined in namespace cxxblas. Function her2 with 1 template parameters.

Home

View document source

© 2011-2012 Michael Lehn