mindspore.ops.Conj
- class mindspore.ops.Conj[源代码]
Returns a tensor of complex numbers that are the complex conjugate of each element in input. The complex numbers in input must be of the form a + bj, where a is the real part and b is the imaginary part.
The complex conjugate returned by this operation is of the form a - bj.
If input is real, it is returned unchanged.
- Inputs:
input (Tensor) - The input tensor to compute to. Must have numeric type.
- Outputs:
Tensor, has the same dtype as the input.
- Raises
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.asarray(np.complex(1.3+0.4j)), mindspore.complex64) >>> conj = ops.Conj() >>> output = conj(x) >>> print(output) (1.3-0.4j)