Overview
>
klyn.math
>
NDArray
>
sin
Overview
Index
Tree
Deprecated
klyn.math.NDArray.sin
method
public sin() as NDArray<Double>:
Description
Returns the element-wise sine in radians. The result is materialized as `NDArray<Double>`.
a = NDArray<Double>.fromList([0.0, Math.PI / 2.0]) print(a.sin())