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
38
39
40
41
42
43
//! Macro definitions.
/// Similar to [vec!] macro but initializes [crate::Vector] instead.
///
/// # Example
///
/// ```
/// use linalgz::*;
///
/// let v = vector![1, 2, 3];
/// assert_eq!(v, Vector::new(vec![1, 2, 3]));
/// ```
/// Helper macro for initializing [num_complex::Complex].
///
/// # Example
/// ```
/// use linalgz::*;
/// use num_complex::Complex;
///
/// let x = complex!(7., 3.);
/// assert_eq!(x, Complex::new(7., 3.));