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

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

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

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

template <typename IndexType>
    IndexType
    sysvx(char                        fact,
          char                        uplo,
          IndexType                   n,
          IndexType                   nRhs,
          const std::complex<float >  *A,
          IndexType                   ldA,
          std::complex<float >        *Af,
          IndexType                   ldAf,
          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,
          IndexType                   lWork,
          float                       *rWork);

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

template <typename IndexType>
    IndexType
    sysvx(char                        fact,
          char                        uplo,
          IndexType                   n,
          IndexType                   nRhs,
          const std::complex<double>  *A,
          IndexType                   ldA,
          std::complex<double>        *Af,
          IndexType                   ldAf,
          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,
          IndexType                   lWork,
          double                      *rWork);

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

Home

View document source

© 2011-2012 Michael Lehn