Home Browse Files
template <typename IndexType>
    IndexType
    gbtrs(char                  trans,
          IndexType             n,
          IndexType             kl,
          IndexType             ku,
          IndexType             nRhs,
          const float           *Ab,
          IndexType             ldAb,
          const IndexType       *iPiv,
          float                 *B,
          IndexType             ldb);

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

template <typename IndexType>
    IndexType
    gbtrs(char                  trans,
          IndexType             n,
          IndexType             kl,
          IndexType             ku,
          IndexType             nRhs,
          const double          *Ab,
          IndexType             ldAb,
          const IndexType       *iPiv,
          double                *B,
          IndexType             ldb);

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

template <typename IndexType>
    IndexType
    gbtrs(char                          trans,
          IndexType                     n,
          IndexType                     kl,
          IndexType                     ku,
          IndexType                     nRhs,
          const std::complex<float>     *Ab,
          IndexType                     ldAb,
          const IndexType               *iPiv,
          std::complex<float>           *B,
          IndexType                     ldb);

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

template <typename IndexType>
    IndexType
    gbtrs(char                          trans,
          IndexType                     n,
          IndexType                     kl,
          IndexType                     ku,
          IndexType                     nRhs,
          const std::complex<double>    *Ab,
          IndexType                     ldAb,
          const IndexType               *iPiv,
          std::complex<double>          *B,
          IndexType                     ldb);

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

Home

View document source

© 2011-2012 Michael Lehn