klyn.math.NDArray.log
method
public log() as NDArray<Double>:
Description
Returns the element-wise natural logarithm. The result is materialized as `NDArray<Double>`.
a = NDArray<Double>.fromList([1.0, Math.E])
print(a.log())