pub fn imag<S: ScalarAd>(x: S) -> S::Real
Primal imag.
imag
use chainrules::imag; use num_complex::Complex64; assert_eq!(imag(Complex64::new(3.0, 4.0)), 4.0);