Home Browse Files
template <typename IndexType, typename MA, typename VX>
    void
    trmv(StorageOrder order, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType n,
         const MA *A, IndexType ldA,
         VX *x, IndexType incX);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trmv(StorageOrder order, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType n,
         const float *A, IndexType ldA,
         float *x, IndexType incX);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trmv(StorageOrder order, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType n,
         const double *A, IndexType ldA,
         double *x, IndexType incX);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trmv(StorageOrder order, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType n,
         const ComplexFloat *A, IndexType ldA,
         ComplexFloat *x, IndexType incX);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trmv(StorageOrder order, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType n,
         const ComplexDouble *A, IndexType ldA,
         ComplexDouble *x, IndexType incX);

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

Home

View document source

© 2011-2012 Michael Lehn