Function rgsl::blas::level3::dsymm [] [src]

pub fn dsymm(side: Side, uplo: Uplo, alpha: f64, A: &MatrixF64, B: &MatrixF64, beta: f64, C: &mut MatrixF64) -> Value

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.