Home Browse Files
template <typename IndexType>
    IndexType
    sytrs2(char                  uplo,
           IndexType             n,
           IndexType             nRhs,
           const float           *A,
           IndexType             ldA,
           const IndexType       *iPiv,
           float                 *B,
           IndexType             ldB,
           float                 *work);

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

template <typename IndexType>
    IndexType
    sytrs2(char                  uplo,
           IndexType             n,
           IndexType             nRhs,
           const double          *A,
           IndexType             ldA,
           const IndexType       *iPiv,
           double                *B,
           IndexType             ldB,
           double                *work);

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

template <typename IndexType>
    IndexType
    sytrs2(char                        uplo,
           IndexType                   n,
           IndexType                   nRhs,
           const std::complex<float >  *A,
           IndexType                   ldA,
           const IndexType             *iPiv,
           std::complex<float >        *B,
           IndexType                   ldB,
           std::complex<float >        *work);

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

template <typename IndexType>
    IndexType
    sytrs2(char                        uplo,
           IndexType                   n,
           IndexType                   nRhs,
           const std::complex<double>  *A,
           IndexType                   ldA,
           const IndexType             *iPiv,
           std::complex<double>        *B,
           IndexType                   ldB,
           std::complex<double>        *work);

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

Home

View document source

© 2011-2012 Michael Lehn