pub fn ssymm(
side: CblasSide,
uplo: CblasUplo,
alpha: f32,
A: &MatrixF32,
B: &MatrixF32,
beta: f32,
C: &mut MatrixF32
) -> Value
Expand description
This function computes the matrix-matrix product and sum C = \alpha A B + \beta C for Side is CblasLeft and C = \alpha B A + \beta C for Side is CblasRight, where the matrix A is symmetric. When Uplo is CblasUpper then the upper triangle and diagonal of A are used, and when Uplo is CblasLower then the lower triangle and diagonal of A are used.