Example #1
0
 inline 
 void pptrf (char const uplo, int const n, 
             traits::complex_f* ap, int* info) 
 {
   LAPACK_CPPTRF (&uplo, &n, traits::complex_ptr (ap), info);
 }
Example #2
0
inline std::ptrdiff_t pptrf( const UpLo, const fortran_int_t n,
        std::complex<float>* ap ) {
    fortran_int_t info(0);
    LAPACK_CPPTRF( &lapack_option< UpLo >::value, &n, ap, &info );
    return info;
}