Home Browse Files
template <typename IndexType>
    void
    gelsy(IndexType    m,
          IndexType    n,
          IndexType    nRhs,
          float        *A,
          IndexType    ldA,
          float        *B,
          IndexType    ldB,
          IndexType    *jPiv,
          float        rCond,
          IndexType    &rank,
          float        *work,
          IndexType    lWork);

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

template <typename IndexType>
    void
    gelsy(IndexType    m,
          IndexType    n,
          IndexType    nRhs,
          double       *A,
          IndexType    ldA,
          double       *B,
          IndexType    ldB,
          IndexType    *jPiv,
          double       rCond,
          IndexType    &rank,
          double       *work,
          IndexType    lWork);

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

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

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

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

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

Home

View document source

© 2011-2012 Michael Lehn