Home Browse Files
template <typename IndexType>
    IndexType
    trsyl(char          transA,
          char          transB,
          IndexType     sign,
          IndexType     m,
          IndexType     n,
          const float   *A,
          IndexType     ldA,
          const float   *B,
          IndexType     ldB,
          float         *C,
          IndexType     ldC,
          float         &scale);

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

template <typename IndexType>
    IndexType
    trsyl(char          transA,
          char          transB,
          IndexType     sign,
          IndexType     m,
          IndexType     n,
          const double  *A,
          IndexType     ldA,
          const double  *B,
          IndexType     ldB,
          double        *C,
          IndexType     ldC,
          double        &scale);

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

template <typename IndexType>
    IndexType
    trsyl(char                          transA,
          char                          transB,
          IndexType                     sign,
          IndexType                     m,
          IndexType                     n,
          const std::complex<float >    *A,
          const IndexType               ldA,
          const std::complex<float >    *B,
          const IndexType               ldB,
          std::complex<float >          *C,
          const IndexType               ldC,
          float                         &scale);

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

template <typename IndexType>
    IndexType
    trsyl(char                          transA,
          char                          transB,
          IndexType                     sign,
          IndexType                     m,
          IndexType                     n,
          const std::complex<double>    *A,
          const IndexType               ldA,
          const std::complex<double>    *B,
          const IndexType               ldB,
          std::complex<double>          *C,
          const IndexType               ldC,
          double                        &scale);

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

Home

View document source

© 2011-2012 Michael Lehn