pub fn matrix_product( a: Vec<f32>, b: Vec<f32>, a_rows: usize, a_columns: usize, b_columns: usize, ) -> Vec<f32>
Multiplies two matrices together.