pub fn matvec<T>(a: &Array2<T>, x: &Array1<T>) -> Array1<T>where T: Zeroable + Field + Clone,
Matrix-vector multiplication: y = A·x
Simplified version of gemv with alpha=1, beta=0.