Home Browse Files
template <typename IndexType>
    IndexType
    spsvx(char                  fact,
          char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          const float           *Ap,
          float                 *Afp,
          IndexType             *iPiv,
          const float           *B,
          IndexType             ldB,
          float                 *X,
          IndexType             ldX,
          float                 &rCond,
          float                 *ferr,
          float                 *berr,
          float                 *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    spsvx(char                  fact,
          char                  uplo,
          IndexType             n,
          IndexType             nRhs,
          const double          *Ap,
          double                *Afp,
          IndexType             *iPiv,
          const double          *B,
          IndexType             ldB,
          double                *X,
          IndexType             ldX,
          double                &rCond,
          double                *ferr,
          double                *berr,
          double                *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    spsvx(char                        fact,
          char                        uplo,
          IndexType                   n,
          IndexType                   nRhs,
          const std::complex<float >  *Ap,
          std::complex<float >        *Afp,
          IndexType                   *iPiv,
          const 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 spsvx with 1 template parameters.

template <typename IndexType>
    IndexType
    spsvx(char                        fact,
          char                        uplo,
          IndexType                   n,
          IndexType                   nRhs,
          const std::complex<double>  *Ap,
          std::complex<double>        *Afp,
          IndexType                   *iPiv,
          const 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 spsvx with 1 template parameters.

Home

View document source

© 2011-2012 Michael Lehn