1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/// This macro is used to create a matrix from a 2D array of numbers.
///
/// # Examples
///
/// ```
/// use matrix_operations::matrix;
///
/// let m = matrix![[1, 2, 3],
/// [4, 5, 6],
/// [7, 8, 9]];
///
/// assert_eq!(m[0], vec![1, 2, 3]);
/// assert_eq!(m[1], vec![4, 5, 6]);
/// assert_eq!(m[2], vec![7, 8, 9]);
/// ```
///
/// # Panics
///
/// This macro will panic if the matrix is not rectangular.
///
/// ```should_panic
/// use matrix_operations::matrix;
///
/// let m = matrix![[1, 2, 3],
/// [4, 5, 6],
/// [7, 8]];
/// ```
;
=> ;
}