menu
cdart package
documentation
math.dart
expm1 function
expm1 function
dark_mode
light_mode
expm1
function
double
expm1
(
double
x
)
Implementation
double expm1(double x) { if (x.abs() < 1e-5) return x + 0.5 * x * x; return math.exp(x) - 1; }
cdart package
documentation
math
expm1 function
math library