Home Browse Files
template <typename IndexType>
    IndexType
    tbtrs(char                  norm,
          char                  uplo,
          char                  diag,
          IndexType             n,
          IndexType             kd,
          IndexType             nRhs,
          const float           *Ab,
          IndexType             ldAb,
          float                 *B,
          IndexType             ldB);

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

template <typename IndexType>
    IndexType
    tbtrs(char                  norm,
          char                  uplo,
          char                  diag,
          IndexType             n,
          IndexType             kd,
          IndexType             nRhs,
          const double          *Ab,
          IndexType             ldAb,
          double                *B,
          IndexType             ldB);

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

template <typename IndexType>
    IndexType
    tbtrs(char                       norm,
          char                       uplo,
          char                       diag,
          IndexType                  n,
          IndexType                  kd,
          IndexType                  nRhs,
          const std::complex<float > *Ab,
          IndexType                  ldAb,
          std::complex<float >       *B,
          IndexType                  ldB);

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

template <typename IndexType>
    IndexType
    tbtrs(char                       norm,
          char                       uplo,
          char                       diag,
          IndexType                  n,
          IndexType                  kd,
          IndexType                  nRhs,
          const std::complex<double> *Ab,
          IndexType                  ldAb,
          std::complex<double>       *B,
          IndexType                  ldB);

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

Home

View document source

© 2011-2012 Michael Lehn