小编典典

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

python

我可以在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

阅读 627

收藏
2021-01-20

共1个答案

小编典典

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

cmath.exp(1+2j)

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

2021-01-20