next up previous contents
Next: PLAPACK calls Up: Rank-1 Update 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 DGER( M, N, ALPHA, X, INCX, Y, INCY, A, LDA )
becomes the C call
PLA_dger( &m, &n, &alpha, x, &incx, y, &incy, a, &lda );

next up previous contents
Next: PLAPACK calls Up: Rank-1 Update Previous: Standard FORTRAN call

rvdg@cs.utexas.edu