Home Browse Files
template <typename IndexType>
    IndexType
    sycon(char                        uplo,
          IndexType                   n,
          const float                 *A,
          IndexType                   ldA,
          const IndexType             *iPiv,
          float                       anorm,
          float                       &rCond,
          float                       *work,
          IndexType                   *iWork);

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

template <typename IndexType>
    IndexType
    sycon(char                        uplo,
          IndexType                   n,
          const double                *A,
          IndexType                   ldA,
          const IndexType             *iPiv,
          double                      anorm,
          double                      &rCond,
          double                      *work,
          IndexType                   *iWork);

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

template <typename IndexType>
    IndexType
    sycon(char                        uplo,
          IndexType                   n,
          const std::complex<float >  *A,
          IndexType                   ldA,
          const IndexType             *iPiv,
          float                       anorm,
          float                       &rCond,
          std::complex<float >        *work,
          IndexType                   *iWork);

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

template <typename IndexType>
    IndexType
    sycon(char                        uplo,
          IndexType                   n,
          const std::complex<double>  *A,
          IndexType                   ldA,
          const IndexType             *iPiv,
          double                      anorm,
          double                      &rCond,
          std::complex<double>        *work,
          IndexType                   *iWork);

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

Home

View document source

© 2011-2012 Michael Lehn