mindspore.ops.ACos
- class mindspore.ops.ACos[source]
Computes arccosine of input tensors element-wise.
Refer to
mindspore.ops.acos()
for more details.- Inputs:
x (Tensor) - The shape of tensor is \((N,*)\) where \(*\) means, any number of additional dimensions.
- Outputs:
Tensor, has the same shape and dtype as x.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> acos = ops.ACos() >>> x = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32) >>> output = acos(x) >>> print(output) [0.737726 1.5307857 1.2661036 0.9764105]