我正在尝试使用numpy使实数复杂。我用的是numpy版本1.24.3下面是代码:
1.24.3
import numpy as np c=np.complex(1)
但是,我得到了这个错误:
AttributeError: module 'numpy' has no attribute 'complex'.
ruarlubt1#
np.complex是内置complex的一个已弃用的别名。除了np.complex,你还可以用途:
np.complex
complex
complex(1) #output (1+0j) #or np.complex128(1) #output (1+0j) #or np.complex_(1) #output (1+0j) #or np.cdouble(1) #output (1+0j)
链接到文档:https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
1条答案
按热度按时间ruarlubt1#
np.complex
是内置complex
的一个已弃用的别名。除了
np.complex
,你还可以用途:链接到文档:https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations