pub fn row_mat2x3_mul_row<T>(a: [[T; 3]; 2], b: [[T; 3]; 2], i: usize) -> [T; 3]where
    T: Copy + Add<Output = T> + Mul<Output = T>,
Expand description

Computes row vector in row matrix product.