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