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)?
|
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
| |||||||
feedback
|
|
Note that exponent of complex number equals:
Then:
| |||
|
feedback
|
|
In C99, there is a
See | |||||
feedback
|
|
Using the Euler's Formula you have that | |||||
feedback
|
|
| |||
|
feedback
|
|
Just use the cartesian form if
| |||
|
feedback
|
|
Is calling a c++ function a solution for you? The C++ STL has a nice complex-class and boost also has to offer some nice options. Write a function in C++ and declare it "extern C"
Then you can call the function from whatever C-code you rely on ( Ansi-C, C99, ...).
| |||
|
feedback
|