Home Browse Files
template <typename IndexType>
    IndexType
    pstrf(char                  uplo,
          IndexType             n,
          float                 *A,
          IndexType             ldA,
          IndexType             *iPiv,
          IndexType             &rank,
          float                 tol,
          float                 *work);

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

template <typename IndexType>
    IndexType
    pstrf(char                  uplo,
          IndexType             n,
          double                *A,
          IndexType             ldA,
          IndexType             *iPiv,
          IndexType             &rank,
          double                tol,
          double                *work);

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

template <typename IndexType>
    IndexType
    pstrf(char                  uplo,
          IndexType             n,
          std::complex<float >  *A,
          IndexType             ldA,
          IndexType             *iPiv,
          IndexType             &rank,
          float                 tol,
          float                 *work);

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

template <typename IndexType>
    IndexType
    pstrf(char                  uplo,
          IndexType             n,
          std::complex<double>  *A,
          IndexType             ldA,
          IndexType             *iPiv,
          IndexType             &rank,
          double                tol,
          double                *work);

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

Home

View document source

© 2011-2012 Michael Lehn