Compute the sine function each element in a tensor. There is a method version of this static function: Tensor.sin.
$$\sin(x) : \forall x \in T$$
const t = sm.randn([128, 128]) // equivalent calls const a = t.sin() const b = sm.sin(t)
Tensor whose values will have their sine calculated
Generated using TypeDoc
Compute the sine function each element in a tensor. There is a method version of this static function: Tensor.sin.
$$\sin(x) : \forall x \in T$$
Example
Returns