next up previous contents
Next: PLAPACK calls Up: Triangular Solve with Multiple Previous: Standard FORTRAN call

PLAPACK FORTRAN-C interface

The FORTRAN call

CALL DTRSM( "L", "L", "N", "U", M, N, ALPHA, A, LDA, B, LDB )
becomes the C call
PLA_dtrsm( "L", "L", "N", "U", &m, &n, &alpha, a, &lda, b, &ldb );

next up previous contents
Next: PLAPACK calls Up: Triangular Solve with Multiple Previous: Standard FORTRAN call

rvdg@cs.utexas.edu