pub fn matrix_matvec(
a: &MatrixData,
v: &[f64],
) -> Result<AlignedVec<f64>, String>Expand description
Matrix-vector multiplication: y = A * v. A is (m x n), v has length n, result has length m.
pub fn matrix_matvec(
a: &MatrixData,
v: &[f64],
) -> Result<AlignedVec<f64>, String>Matrix-vector multiplication: y = A * v. A is (m x n), v has length n, result has length m.