Home Browse Files
template <typename IndexType>
    IndexType
    gelsd(IndexType             m,
          IndexType             n,
          IndexType             nRhs,
          const float           *A,
          IndexType             ldA,
          float                 *B,
          IndexType             ldB,
          float                 *s,
          float                 rCond,
          IndexType             &rank,
          float                 *work,
          IndexType             lWork,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    gelsd(IndexType             m,
          IndexType             n,
          IndexType             nRhs,
          const double          *A,
          IndexType             ldA,
          double                *B,
          IndexType             ldB,
          double                *s,
          double                rCond,
          IndexType             &rank,
          double                *work,
          IndexType             lWork,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    gelsd(IndexType                     m,
          IndexType                     n,
          IndexType                     nRhs,
          const std::complex<float >    *A,
          IndexType                     ldA,
          std::complex<float >          *B,
          IndexType                     ldB,
          float                         *s,
          float                         rCond,
          IndexType                     &rank,
          std::complex<float >          *work,
          IndexType                     lWork,
          float                         *rWork,
          IndexType                     *iWork);

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

template <typename IndexType>
    IndexType
    gelsd(IndexType                     m,
          IndexType                     n,
          IndexType                     nRhs,
          const std::complex<double>    *A,
          IndexType                     ldA,
          std::complex<double>          *B,
          IndexType                     ldB,
          double                        *s,
          double                        rCond,
          IndexType                     &rank,
          std::complex<double>          *work,
          IndexType                     lWork,
          double                        *rWork,
          IndexType                     *iWork);

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

Home

View document source

© 2011-2012 Michael Lehn