/// Allocates a new Complex64 number
///
/// This macro simply calls `Complex64::new(real, imag)`
///
/// **Note:** When using this macro, the `Complex64` type must be imported as well.
///
/// # Examples
///
/// ```
/// use russell_lab::cpx;
///
/// let x = cpx!(1.0, 2.0);
/// let y = cpx!(3.0, 4.0);
/// let z = x + y;
/// assert_eq!(z.re, 4.0);
/// assert_eq!(z.im, 6.0);
/// ```
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////