pub fn hypot<R: Float>(x: R, y: R) -> R
Primal hypot.
hypot
use chainrules::hypot; assert_eq!(hypot(3.0_f64, 4.0_f64), 5.0);