pub fn ssyr2k(
uplo: CblasUplo,
trans: CblasTranspose,
alpha: f32,
A: &MatrixF32,
B: &MatrixF32,
beta: f32,
C: &mut MatrixF32
) -> Value
Expand description
This function computes a rank-2k update of the symmetric matrix C, C = \alpha A B^T + \alpha B A^T + \beta C when Trans is NoTrans and C = \alpha A^T B + \alpha B^T A + \beta C when Trans is Trans. Since the matrix C is symmetric only its upper half or lower half need to be stored. When Uplo is Upper then the upper triangle and diagonal of C are used, and when Uplo is Lower then the lower triangle and diagonal of C are used.