NumPy 函数

NumPy conjugate() 函数按元素返回复共轭。使用该函数的语法如下:

语法

numpy.conjugate(x, out=None) 

参数

x必填。 指定输入数组。
out可选。 指定存储结果的位置。如果提供,它必须具有输入广播到的形状。如果未提供或没有,则返回新分配的数组。

返回值

返回x元素的复共轭

示例:

下面的示例显示了 conjugate() 函数的用法。

import numpy as np

Arr = np.array([[1+2j,2+4j],
                [3+6j,4+8j]])

print("Arr is:")
print(Arr)

#Arr 的复共轭
print("\nComplex conjugate of Arr is:")
print(np.conjugate(Arr)) 

上面的输出代码为:

Arr is:
[[1.+2.j 2.+4.j]
 [3.+6.j 4.+8.j]]

Complex conjugate of Arr is:
[[1.-2.j 2.-4.j]
 [3.-6.j 4.-8.j]]