Home Browse Files
template <typename IndexType>
    IndexType
    tbcon(char                  norm,
          char                  uplo,
          char                  diag,
          IndexType             n,
          IndexType             kd,
          const float           *Ab,
          IndexType             ldAb,
          float                 &rCond,
          float                 *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    tbcon(char                  norm,
          char                  uplo,
          char                  diag,
          IndexType             n,
          IndexType             kd,
          const double          *Ab,
          IndexType             ldAb,
          double                &rCond,
          double                *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    tbcon(char                        norm,
          char                        uplo,
          char                        diag,
          IndexType                   n,
          IndexType                   kd,
          const std::complex<float >  *Ab,
          IndexType                   ldAb,
          float                       &rCond,
          std::complex<float >        *work,
          float                       *rWork);

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

template <typename IndexType>
    IndexType
    tbcon(char                        norm,
          char                        uplo,
          char                        diag,
          IndexType                   n,
          IndexType                   kd,
          const std::complex<double>  *Ab,
          IndexType                   ldAb,
          double                      &rCond,
          std::complex<double>        *work,
          double                      *rWork);

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

Home

View document source

© 2011-2012 Michael Lehn