Home Browse Files
template <typename IndexType>
    IndexType
    gttrs(char                  trans,
          IndexType             n,
          IndexType             nRhs,
          const float           *dl,
          const float           *d,
          const float           *du,
          const float           *du2,
          const IndexType       *iPiv,
          float                 *B,
          IndexType             ldB);

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

template <typename IndexType>
    IndexType
    gttrs(char                  trans,
          IndexType             n,
          IndexType             nRhs,
          const double          *dl,
          const double          *d,
          const double          *du,
          const double          *du2,
          const IndexType       *iPiv,
          double                *B,
          IndexType             ldB);

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

template <typename IndexType>
    IndexType
    gttrs(char                        trans,
          IndexType                   n,
          IndexType                   nRhs,
          const std::complex<float >  *dl,
          const std::complex<float >  *d,
          const std::complex<float >  *du,
          const std::complex<float >  *du2,
          const IndexType             *iPiv,
          std::complex<float >        *B,
          IndexType                   ldB);

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

template <typename IndexType>
    IndexType
    gttrs(char                        trans,
          IndexType                   n,
          IndexType                   nRhs,
          const std::complex<double>  *dl,
          const std::complex<double>  *d,
          const std::complex<double>  *du,
          const std::complex<double>  *du2,
          const IndexType             *iPiv,
          std::complex<double>        *B,
          IndexType                   ldB);

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

Home

View document source

© 2011-2012 Michael Lehn