Function rgsl::blas::level3::sgemm

source ·
pub fn sgemm(
    transA: Transpose,
    transB: Transpose,
    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 op(A) op(B) + \beta C where op(A) = A, A^T, A^H for TransA = CblasNoTrans, CblasTrans, CblasConjTrans and similarly for the parameter TransB.