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

Standard FORTRAN call

The FORTRAN level-2 BLAS call for this operation is

     

SUBROUTINE tex2html_wrap_inline14411 SYR ( UPLO, N, ALPHA, X, INCX, A, LDA )

Here tex2html_wrap_inline14413 is replaced by S, D, C, or Z to indicate the datatype of the data (single, double, complex, double precision complex). Parameter UPLO indicates whether A is stored in the lower (UPLO = "Lower") or upper (UPLO = "Upper") triangular part of A. Parameter N holds the matrix dimension n . Parameter ALPHA holds the scaling factor tex2html_wrap_inline14419 . Parameters a and x equal the addresses of where matrix A and vector x start in memory. The leading dimensions of the matrix is given in LDA and the stride of the vector in INCX.


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

rvdg@cs.utexas.edu