Can i calculate exp(1+2j) in python?
exp(1+2j) Traceback (most recent call last): File \"\", line 1, in TypeError: can\'t conve
You need a complex version of this function:
cmath.exp(1+2j)
See http://docs.python.org/library/cmath.html