Home Browse Files
template <typename IndexType>
    IndexType
    spcon(char                        uplo,
          IndexType                   n,
          const double                *Ap,
          IndexType                   *iPiv,
          double                      anorm,
          double                      &rCond,
          double                      *work,
          IndexType                   *iWork);

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

template <typename IndexType>
    IndexType
    spcon(char                        uplo,
          IndexType                   n,
          const std::complex<float >  *Ap,
          IndexType                   *iPiv,
          float                       anorm,
          float                       &rCond,
          std::complex<float >        *work);

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

template <typename IndexType>
    IndexType
    spcon(char                        uplo,
          IndexType                   n,
          const std::complex<double>  *Ap,
          IndexType                   *iPiv,
          double                      anorm,
          double                      &rCond,
          std::complex<double>        *work);

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

Home

View document source

© 2011-2012 Michael Lehn