Home Browse Files
template <typename IndexType>
    IndexType
    sptrs(char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          const float           *Ap,
          const IndexType       *iPiv,
          float                 *B,
          IndexType             ldB);

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

template <typename IndexType>
    IndexType
    sptrs(char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          const double          *Ap,
          const IndexType       *iPiv,
          double                *B,
          IndexType             ldB);

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

template <typename IndexType>
    IndexType
    sptrs(char                       uplo,
          IndexType                  n,
          IndexType                  nRhs,
          const std::complex<float > *Ap,
          const IndexType            *iPiv,
          std::complex<float >       *B,
          IndexType                  ldB);

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

template <typename IndexType>
    IndexType
    sptrs(char                       uplo,
          IndexType                  n,
          IndexType                  nRhs,
          const std::complex<double> *Ap,
          const IndexType            *iPiv,
          std::complex<double>       *B,
          IndexType                  ldB);

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

Home

View document source

© 2011-2012 Michael Lehn