Conjugation of a complex number is obtained by changing the sign of its imaginary part. If the complex number is 2 + 5j, then its conjugate is 2-5j.
Parameters:
x [array_like]: Input value.
out [ndarray, optional]: Output array with same dimensions as Input array, placed with result.Return:
x: ndarray. The complex conjugate of x, with same dtype as y.
Code # 1:
|
Output:
Output conjugated complex number of 2 + 4j: (2-4j) Output conjugated complex number of 5-8j: (5 + 8j)
Code # 2:
< code class = "keyword"> import
|
Output:
Input array: [[1. + 3.j 0. + 0.j] [0. + 0.j 1. + 3.j]] Output conjugated array: [[1.-3.j 0.-0.j] [0.-0.j 1.-3.j]]