mindspore.ops.ACos
- class mindspore.ops.ACos[source]
Computes arccosine of input tensors element-wise.
\[out_i = cos^{-1}(x_i)\]- Inputs:
- x (Tensor) - The shape of tensor is
\((N,*)\) where \(*\) means, any number of additional dimensions.
- Outputs:
Tensor, has the same shape as x.
- Raises
TypeError – If x is not a Tensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> acos = ops.ACos() >>> x = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32) >>> output = acos(x) >>> print(output) [0.7377037 1.5307858 1.2661037 0.97641146]