DSYRK( UPLO, TRANS, N, K, ALPHA, A, LDA, 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:
DSYRK( "Lower", "No transpose", N, K, ALPHA, A, LDA, BETA, C, LDC )where N and K are the dimensions of A and matrix C is N by N.
Special instructions:
dsyrk_lower_notrans( n, k, alpha, a, lda, 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:
DSYRK( "Lower", "Transpose", N, K, ALPHA, A, LDA, BETA, C, LDC )where K and N are the dimensions of A and matrix C is N by N.
Special instructions:
dsyrk_lower_trans( n, k, alpha, a, lda, beta, c, ldc )
place HR here