klyn.math.NDArray.exp
method
public native exp() as NDArray<Double>
Description

Returns the element-wise exponential.

The result is materialized as NDArray<Double>.

a = NDArray<Double>.fromList([0.0, 1.0])
print(a.exp())