Home Browse Files
template <typename IndexType>
    IndexType
    gesdd(char                   jobZ,
          IndexType              m,
          IndexType              n,
          float                  *A,
          IndexType              ldA,
          float                  *s,
          float                  *U,
          IndexType              ldU,
          float                  *Vt,
          IndexType              ldVt,
          float                  *work,
          IndexType              lWork,
          IndexType              *iWork);

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

template <typename IndexType>
    IndexType
    gesdd(char                   jobZ,
          IndexType              m,
          IndexType              n,
          double                 *A,
          IndexType              ldA,
          double                 *s,
          double                 *U,
          IndexType              ldU,
          double                 *Vt,
          IndexType              ldVt,
          double                 *work,
          IndexType              lWork,
          IndexType              *iWork);

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

template <typename IndexType>
    IndexType
    gesdd(char                   jobZ,
          IndexType              m,
          IndexType              n,
          std::complex<float >   *A,
          IndexType              ldA,
          std::complex<float >   *s,
          std::complex<float >   *U,
          IndexType              ldU,
          std::complex<float >   *Vt,
          IndexType              ldVt,
          std::complex<float >   *work,
          IndexType              lWork,
          IndexType              *iWork);

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

template <typename IndexType>
    IndexType
    gesdd(char                   jobZ,
          IndexType              m,
          IndexType              n,
          std::complex<double>   *A,
          IndexType              ldA,
          std::complex<double>   *s,
          std::complex<double>   *U,
          IndexType              ldU,
          std::complex<double>   *Vt,
          IndexType              ldVt,
          std::complex<double>   *work,
          IndexType              lWork,
          IndexType              *iWork);

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

Home

View document source

© 2011-2012 Michael Lehn