Overview
>
klyn.math
>
NDArray
>
log
Overview
Index
Tree
Deprecated
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())