product_two_matrices_from_flattened_vectors

Function product_two_matrices_from_flattened_vectors 

Source
pub fn product_two_matrices_from_flattened_vectors<F: Field>(
    matrix_a_vec: &[F],
    matrix_b_vec: &[F],
    matrix_a_num_rows: usize,
    matrix_a_num_cols: usize,
    matrix_b_num_rows: usize,
    matrix_b_num_cols: usize,
) -> Vec<F>
Expand description

Compute the product of two matrices given flattened vectors rather than matrices.