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

PLAPACK FORTRAN-C interface

The FORTRAN call

CALL DSYRK( "L", "N", N, K, ALPHA, A, LDA, BETA, C, LDC )
becomes the C call
PLA_dsyrk( "L", "N", &n, &k, &alpha, a, &lda, &beta, c, &ldc );

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

rvdg@cs.utexas.edu