Overview
>
klyn.math
>
NDArray
>
log1p
Overview
Index
Tree
Deprecated
klyn.math.NDArray.log1p
method
public log1p() as NDArray<Double>:
Description
Returns the element-wise `log(1 + value)`. The result is materialized as `NDArray<Double>`.
a = NDArray<Double>.fromList([0.0, 1.0]) print(a.log1p())