DSYR2K( UPLO, TRANS, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC )
place HR here
where C is symmetric and stored in the lower triangular portion of array C.
Fortran call for this case:
DSYR2K( "Lower", "No transpose", N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC )where N and K are the dimensions of A and B , and matrix C is N by N.
Special instructions:
dsyr2k_lower_notrans( n, k, alpha, a, lda, b, ldb, beta, c, ldc )
place HR here
where C is symmetric and stored in the lower triangular portion of array C.
Fortran call for this case:
DSYR2K( "Lower", "Transpose", N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC )where K and N are the dimensions of A and B , and matrix C is N by N.
Special instructions:
dsyr2k_lower_trans( n, k, alpha, a, lda, b, ldb, beta, c, ldc )
place HR here