exp10

Function exp10 

Source
pub fn exp10<S: ScalarAd>(x: S) -> S
Expand description

Primal 10^x.

ยงExamples

use chainrules::exp10;

assert!((exp10(2.0_f64) - 100.0).abs() < 1e-12);