我可以在python中计算exp(1 + 2j)吗?

我可以在python中计算exp(1 + 2j)吗?

exp(1+2j)

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

TypeError: can't convert complex to float

回答:

您需要此功能的复杂版本:

cmath.exp(1+2j)

参见http://docs.python.org/library/cmath.html

以上是 我可以在python中计算exp(1 + 2j)吗? 的全部内容, 来源链接: utcz.com/qa/419085.html

回到顶部