pub unsafe fn matvec_multiply_fast(
matrix: &Array2<f64>,
vector: &[f64],
result: &mut [f64],
)Expand description
Fast matrix-vector multiplication using unsafe optimizations
Computes result = matrix * vector
ยงSafety
matrixmust have the same number of columns asvectorhas elementsresultmust have the same length asmatrixhas rows- All slices must be properly aligned and valid