Home Browse Files
template <typename IndexType>
    IndexType
    geev(char           jobVL,
         char           jobVR,
         IndexType      n,
         float          *A,
         IndexType      ldA,
         float          *wr,
         float          *wi,
         float          *VL,
         IndexType      ldVL,
         float          *VR,
         IndexType      ldVR,
         float          *work,
         IndexType      lWork);

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

template <typename IndexType>
    IndexType
    geev(char           jobVL,
         char           jobVR,
         IndexType      n,
         double         *A,
         IndexType      ldA,
         double         *wr,
         double         *wi,
         double         *VL,
         IndexType      ldVL,
         double         *VR,
         IndexType      ldVR,
         double         *work,
         IndexType      lWork);

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

template <typename IndexType>
    IndexType
    geev(char                   jobVL,
         char                   jobVR,
         IndexType              n,
         std::complex<float >   *A,
         IndexType              ldA,
         std::complex<float >   *w,
         std::complex<float >   *VL,
         IndexType              ldVL,
         std::complex<float >   *VR,
         IndexType              ldVR,
         std::complex<float >   *work,
         IndexType              lWork,
         float                  *rWork);

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

template <typename IndexType>
    IndexType
    geev(char                   jobVL,
         char                   jobVR,
         IndexType              n,
         std::complex<double>   *A,
         IndexType              ldA,
         std::complex<double>   *w,
         std::complex<double>   *VL,
         IndexType              ldVL,
         std::complex<double>   *VR,
         IndexType              ldVR,
         std::complex<double>   *work,
         IndexType              lWork,
         double                 *rWork);

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

Home

View document source

© 2011-2012 Michael Lehn