mindspore.ops.Sin
- class mindspore.ops.Sin(*args, **kwargs)[source]
Computes sine of the input element-wise.
- Inputs:
x (Tensor) - The shape of tensor is \((x_1, x_2, ..., x_R)\).
- Outputs:
Tensor, has the same shape as x.
- Raises
TypeError – If x is not a Tensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> sin = ops.Sin() >>> x = Tensor(np.array([0.62, 0.28, 0.43, 0.62]), mindspore.float32) >>> output = sin(x) >>> print(output) [0.5810352 0.27635565 0.41687083 0.5810352 ]