Computing e^(-j) in C..

Posted by Erkan H on Stack Overflow See other posts from Stack Overflow or by Erkan H
Published on 2010-05-14T14:25:09Z Indexed on 2010/05/14 14:34 UTC
Read the original article Hit count: 152

Filed under:
|
|

I need to compute imaginary exponential in C.

As far as I know, there is no complex number library in C. It is possible to get e^x with exp(x) of math.h, but how can I compute the value of e^(-j), where j = sqrt(-1)?

© Stack Overflow or respective owner

Related posts about imaginary-numbers

Related posts about c