Next: PLAPACK calls
Up: Triangular Solve with Multiple
Previous: Standard FORTRAN call
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: PLAPACK calls
Up: Triangular Solve with Multiple
Previous: Standard FORTRAN call
rvdg@cs.utexas.edu