Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
11answers
1k views

As a programmer how would you explain imaginary numbers?

As a programmer I think it is my job to be good at math but I am having trouble getting my head round imaginary numbers. I have tried google and wikipedia with no luck so I am hoping a programmer can ...
7
votes
5answers
247 views

C99: can imaginary part of complex be a negative zero

Is it possible to store negative zero in imaginary part of C99 complex float? How I should statically initialize complex constants with signed imaginary part? I have a small example, but I can't ...
4
votes
4answers
572 views

Calculating complex numbers with rational exponents

Yesterday I created this piece of code that could calculate z^n, where z is a complex number and n is any positive integer. --snip-- float real = 0; float imag = 0; // d is the power the number is ...
2
votes
2answers
309 views

C# application solving for quadratic imaginary roots

I have constructed an extremely simple, yet fully-functioning and quite helpful, WinForms C# application that solves for the real roots of a quadratic equation. Here is my current programming logic: ...
2
votes
2answers
676 views

How can I stop cruise control re-building after a failed build?

I got back from the weekend to discover that somebody *ahem* had missed a file commit last thing Friday afternoon... Cruise control has been having fun, and tried to re-build every five minutes since ...
1
vote
6answers
325 views

Computing e^(-j) in C

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), ...
0
votes
1answer
139 views

Imaginary numbers

I have a method that takes 3 doubles and calculates the roots via the Quadratic Formula: public static double[] quadraticFormula(double a, double b, double c) throws ArithmeticException { double ...