pub fn strmm(
side: CblasSide,
uplo: CblasUplo,
transA: CblasTranspose,
diag: CblasDiag,
alpha: f32,
A: &MatrixF32,
B: &mut MatrixF32
) -> Value
Expand description
This function computes the matrix-matrix product B = \alpha op(A) B for Side is Left and B = \alpha B op(A) for Side is CblasRight. The matrix A is triangular and op(A) = A, A^T, A^H for TransA = NoTrans, Trans, ConjTrans. When Uplo is Upper then the upper triangle of A is used, and when Uplo is Lower then the lower triangle of A is used. If Diag is NonUnit then the diagonal of A is used, but if Diag is Unit then the diagonal elements of the matrix A are taken as unity and are not referenced.