pub fn sgemv(
transA: CblasTranspose,
alpha: f32,
A: &MatrixF32,
x: &VectorF32,
beta: f32,
y: &mut VectorF32
) -> Value
Expand description
This function computes the matrix-vector product and sum y = \alpha op(A) x + \beta y, where op(A) = A, A^T, A^H for TransA = CblasNoTrans, CblasTrans, CblasConjTrans.