Tagged Questions

0
votes
1answer
39 views

Complex numbers: fast cartesian to polar conversion

Hi. I'm looking for a fast way to turn an array of complex numbers into polar representation. E.g, given a complex number X I want to turn it into polar representation like this: …
0
votes
4answers
169 views

Complex number notation

My DotNET application has a limited scripting language build in (modelled loosely on VBScript) mainly for post-processing numbers, points and vectors. I've just added support for c …
1
vote
4answers
241 views

Java math expression parser that can take complex numbers as a variable?

I am writing a program in Processing that transforms complex numbers. However, I want to have a method of taking an input string and calculating the transformation using a complex …
2
votes
3answers
175 views

Complex iterations in haskell

Hi I have this complex iterations program I wrote in TI Basic to perform a basic iteration on a complex number and then give the magnitude of the result: INPUT “SEED?”, C INPUT “I …
2
votes
3answers
242 views

Overloading operators in C++

See edit at the end I am trying to overload the + operator in C++ to allow me to add two complex numbers. (add the real and add the imaginary). Here is my overloaded function: C …
2
votes
3answers
167 views

Haskell Parsing Error

So I have finished creating my own complex number data type in haskell. I've also, thanks to another question on here, got a function that will solve a quadratic equation. The on …
3
votes
3answers
273 views

Haskell and Quadratics

Hi, I have to write a program to solve quadratics, returning a complex number result. I've gotten so far, with defining a complex number, declaring it to be part of num, so +,- a …
0
votes
2answers
329 views

How to calculate log of a complex number to a base other than ‘e’?

I have this bit of VB6 sliced out of a project I'm working on: Public Function C_Ln(c As ComplexNumber) As ComplexNumber Set C_Ln = toComplex(Log(C_Abs(c)), Atan2(c.Imag, c.Re …
8
votes
11answers
644 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 hopi …
3
votes
4answers
129 views

How should complex numbers be rendered?

Mathematics naive question: What is the "canonical" way to represent 14+1i? 14+i1 or 14+i Similarly, is it likely, in the 'real world', that scientific notation is going to …