next up previous contents
Next: PLAPACK FORTRAN-C interface Up: Symmetric Rank-k Update Previous: Symmetric Rank-k Update

Standard FORTRAN call

The FORTRAN level-3 BLAS call for this operation is

     

SUBROUTINE tex2html_wrap_inline14803 SYRK ( UPLO, TRANS, N, K, ALPHA, A, LDA, BETA, C, LDC )

Here tex2html_wrap_inline14805 is replaced by S, D, C, or Z to indicate the datatype of the data (single, double, complex, double precision complex). Parameter UPLO indicates if C is stored in the upper or lower triangular portion of array c. Parameter TRANS indicates if the first operation (when TRANS="No transpose") or the second operation (when TRANS="Transpose") is to be performed. Parameter N indicates the dimension of square matrix C . The ``other'' dimension of A is given in parameter K. Parameters ALPHA and BETA hold the scaling factors tex2html_wrap_inline14813 and tex2html_wrap_inline14815 . Parameters A and C equal the addresses of where the matrices A and C start in memory. The leading dimensions of the matrices are given in LDA and LDC.


next up previous contents
Next: PLAPACK FORTRAN-C interface Up: Symmetric Rank-k Update Previous: Symmetric Rank-k Update

rvdg@cs.utexas.edu