Home Browse Files
template <typename IndexType>
    IndexType
    gesv(IndexType  n,
         IndexType  nRhs,
         float      *A,
         IndexType  ldA,
         IndexType  *iPiv,
         float      *B,
         IndexType  ldB);

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

template <typename IndexType>
    IndexType
    gesv(IndexType  n,
         IndexType  nRhs,
         double     *A,
         IndexType  ldA,
         IndexType  *iPiv,
         double     *B,
         IndexType  ldB);

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

template <typename IndexType>
    IndexType
    gesv(IndexType              n,
         IndexType              nRhs,
         std::complex<float >   *A,
         IndexType              ldA,
         IndexType              *iPiv,
         std::complex<float >   *B,
         IndexType              ldB);

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

template <typename IndexType>
    IndexType
    gesv(IndexType              n,
         IndexType              nRhs,
         std::complex<double>   *A,
         IndexType              ldA,
         IndexType              *iPiv,
         std::complex<double>   *B,
         IndexType              ldB);

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

Home

View document source

© 2011-2015 Michael Lehn