[][src]Function aljabar::new_matrix

pub fn new_matrix<T: Clone, const N: usize, const M: usize>(
    rows: [[T; M]; N]
) -> Matrix<T, { N }, { M }>

Constructs a new matrix from an array, using the more visually natural row major order. Necessary to help the compiler. Prefer calling the macro matrix!, which calls new_matrix internally.