Home Browse Files
template <typename IndexType>
    IndexType
    posvx(char                  fact,
          char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          float                 *A,
          IndexType             ldA,
          float                 *Af,
          IndexType             ldAf,
          char                  &equed,
          float                 *s,
          float                 *B,
          IndexType             ldB,
          float                 *X,
          IndexType             ldX,
          float                 &rCond,
          float                 *ferr,
          float                 *berr,
          float                 *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    posvx(char                  fact,
          char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          double                *A,
          IndexType             ldA,
          double                *Af,
          IndexType             ldAf,
          char                  &equed,
          double                *s,
          double                *B,
          IndexType             ldB,
          double                *X,
          IndexType             ldX,
          double                &rCond,
          double                *ferr,
          double                *berr,
          double                *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    posvx(char                  fact,
          char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          std::complex<float >  *A,
          IndexType             ldA,
          std::complex<float >  *Af,
          IndexType             ldAf,
          char                  &equed,
          float                 *s,
          std::complex<float >  *B,
          IndexType             ldB,
          std::complex<float >  *X,
          IndexType             ldX,
          float                 &rCond,
          float                 *ferr,
          float                 *berr,
          std::complex<float >  *work,
          float                 *rWork);

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

template <typename IndexType>
    IndexType
    posvx(char                  fact,
          char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          std::complex<double>  *A,
          IndexType             ldA,
          std::complex<double>  *Af,
          IndexType             ldAf,
          char                  &equed,
          double                *s,
          std::complex<double>  *B,
          IndexType             ldB,
          std::complex<double>  *X,
          IndexType             ldX,
          double                &rCond,
          double                *ferr,
          double                *berr,
          std::complex<double>  *work,
          double                *rWork);

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

Home

View document source

© 2011-2012 Michael Lehn