How can I work with complex numbers in C? I see there is a complex.h header file, but it doesn't give me much information about how to use it. How to access real and imaginary parts in an efficient way? Is there native functions to get module and phase?
|
|
|||||||||||||||||
|
|
Complex types are in the C language from C99 standard ( You can start from http://en.wikipedia.org/wiki/Complex.h - it gives a description of functions from complex.h This manual http://pubs.opengroup.org/onlinepubs/009604499/basedefs/complex.h.html also gives some info about macros. To declare a complex variable, use
or
To give a value into complex, use
(actually there can be some problems here with Module is To directly access real an imag part you may use this unportable GCC-extension:
|
|||||
|
|
This code will help you, and it's fairly self-explanatory:
with:
|
||||
|
|
|
|
||||
|
|
