pub fn imag_rrule<S: ComplexProjectionScalar>(cotangent: S::Real) -> SExpand description
Reverse rule for imag.
ยงExamples
use chainrules::imag_rrule;
use num_complex::Complex64;
let grad: Complex64 = imag_rrule(2.0);
assert_eq!(grad, Complex64::new(0.0, 2.0));