klyn.math.NDArray.expm1
method
public expm1() as NDArray<Double>:
Description
Returns the element-wise `exp(value) - 1`. The result is materialized as `NDArray<Double>`.
a = NDArray<Double>.fromList([0.0, 1.0])
print(a.expm1())