next up previous contents
Next: PLAPACK calls Up: Triangular Matrix-Vector Multiplication Previous: Standard FORTRAN call

PLAPACK FORTRAN-C interface

PLAPACK provides platform independent level-2 BLAS calls, by adding the prefix ``PLA_''. Thus the FORTRAN call

CALL DTRMV( "L", "N", "U", N, A, LDA, X, INCX )
becomes the C call
PLA_dtrmv( "L", "N", "U", &n, a, &lda, x, &incx )
Recall that only the first character of the string parameters are checked. Thus "N" is equivalent to "No transpose".


next up previous contents
Next: PLAPACK calls Up: Triangular Matrix-Vector Multiplication Previous: Standard FORTRAN call

rvdg@cs.utexas.edu