Artemiy Pavlov wrote:
This may be a little bit off-topic, but can anyone
suggest me any reading on
how to use complex numbers in C or C++? Is there any library or ++ classes
for such computations?
There are complex functions and generic templates that are part of the
standard C++ library. A Google search on "C++ complex numbers" should
yield a ton of links.
ISO C99 introduces complex types into C also:
http://www.gnu.org/software/libc/manual/html_node/Complex-Numbers.html
-- Brett