Home Browse Files
template <typename IndexType>
    IndexType
    ggsvd(char                  jobu,
          char                  jobv,
          char                  jobq,
          IndexType             m,
          IndexType             n,
          IndexType             p,
          IndexType             &k,
          IndexType             &l,
          float                 *A,
          IndexType             ldA,
          float                 *B,
          IndexType             ldB,
          float                 *alpha,
          float                 *beta,
          float                 *U,
          IndexType             ldU,
          float                 *V,
          IndexType             ldV,
          float                 *Q,
          IndexType             ldQ,
          float                 *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    ggsvd(char                  jobu,
          char                  jobv,
          char                  jobq,
          IndexType             m,
          IndexType             n,
          IndexType             p,
          IndexType             &k,
          IndexType             &l,
          double                *A,
          IndexType             ldA,
          double                *B,
          IndexType             ldB,
          double                *alpha,
          double                *beta,
          double                *U,
          IndexType             ldU,
          double                *V,
          IndexType             ldV,
          double                *Q,
          IndexType             ldQ,
          double                *work,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    ggsvd(char                  jobu,
          char                  jobv,
          char                  jobq,
          IndexType             m,
          IndexType             n,
          IndexType             p,
          IndexType             &k,
          IndexType             &l,
          std::complex<float >  *A,
          IndexType             ldA,
          std::complex<float >  *B,
          IndexType             ldB,
          float                 *alpha,
          float                 *beta,
          std::complex<float >  *U,
          IndexType             ldU,
          std::complex<float >  *V,
          IndexType             ldV,
          std::complex<float >  *Q,
          IndexType             ldQ,
          std::complex<float >  *work,
          float                 *rWork,
          IndexType             *iWork);

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

template <typename IndexType>
    IndexType
    ggsvd(char                  jobu,
          char                  jobv,
          char                  jobq,
          IndexType             m,
          IndexType             n,
          IndexType             p,
          IndexType             &k,
          IndexType             &l,
          std::complex<double>  *A,
          IndexType             ldA,
          std::complex<double>  *B,
          IndexType             ldB,
          double                *alpha,
          double                *beta,
          std::complex<double>  *U,
          IndexType             ldU,
          std::complex<double>  *V,
          IndexType             ldV,
          std::complex<double>  *Q,
          IndexType             ldQ,
          std::complex<double>  *work,
          double                *rWork,
          IndexType             *iWork);

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

Home

View document source

© 2011-2012 Michael Lehn