Home Browse Files
template <typename IndexType>
    IndexType
    tbrfs(char                  uplo,
          char                  trans,
          char                  diag,
          IndexType             n,
          IndexType             kd,
          const float           *Ab,
          IndexType             ldAb,
          const float           *B,
          IndexType             ldB,
          const float           *X,
          IndexType             ldX,
          float                 *ferr,
          float                 *berr,
          float                 *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    tbrfs(char                  uplo,
          char                  trans,
          char                  diag,
          IndexType             n,
          IndexType             kd,
          const double          *Ab,
          IndexType             ldAb,
          const double          *B,
          IndexType             ldB,
          const double          *X,
          IndexType             ldX,
          double                *ferr,
          double                *berr,
          double                *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    tbrfs(char                       uplo,
          char                       trans,
          char                       diag,
          IndexType                  n,
          IndexType                  kd,
          const std::complex<float > *Ab,
          IndexType                  ldAb,
          const std::complex<float > *B,
          IndexType                  ldB,
          const std::complex<float > *X,
          IndexType                  ldX,
          float                      *ferr,
          float                      *berr,
          std::complex<float >       *work,
          float                      *rWork);

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

template <typename IndexType>
    IndexType
    tbrfs(char                       uplo,
          char                       trans,
          char                       diag,
          IndexType                  n,
          IndexType                  kd,
          const std::complex<double> *Ab,
          IndexType                  ldAb,
          const std::complex<double> *B,
          IndexType                  ldB,
          const std::complex<double> *X,
          IndexType                  ldX,
          double                     *ferr,
          double                     *berr,
          std::complex<double>       *work,
          double                     *rWork);

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

Home

View document source

© 2011-2012 Michael Lehn