Tagged Questions
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 ...
6
votes
1answer
2k views
What's a nice method to factor gaussian integers?
I already have prime factorization (for integers), but now I want to implement it for gaussian integers but how should I do it? thanks!
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 ...
3
votes
1answer
227 views
iOS — implementing complex numbers
As a follow-up to this question:
I was in the process of implementing a calculator app using Apple's complex number support when I noticed that if one calculates using that support, one ends up with ...
3
votes
5answers
461 views
Java library for matrix operations involving complex numbers?
I want to rewrite some signal processing code of mine from C++ to Java. I wind up with matrices of complex numbers (numbers with imaginary components). I need to find the inverse of an NxN complex ...
3
votes
3answers
893 views
Haskell and Quadratics
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 +,- and * - ing can take ...
3
votes
4answers
207 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 creep into a ...
2
votes
3answers
590 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 “ITERATIONS?”, N
C→Z
...
2
votes
3answers
532 views
Haskell floating point 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 only problem now is ...
1
vote
1answer
138 views
Plotting complex functions using the Symbolic Math Toolbox?
How should I plot this function:
z^(1/n) [complex roots of z]
with ezsurf(), ezmesh(), ...? In the official documentation is clearly stated that ezsurf() and ezsurfc() for example, do not accept ...
1
vote
3answers
170 views
Representation of complex numbers in C++ for Discrete Fourier Transformation
I am currently writing a small tool which should help me check whether my manually calculated fourier vectors are correct. Now i need the n-th Root of Unity specified by omega = exp(2*pi*i / n). Can ...
1
vote
3answers
353 views
Encode complex number as RGB pixel and back
How is it better to encode a complex number into RGB pixel and vice versa?
Probably (logarithm of) an absolute value goes to brightness and an argument goes to hue.
Desaturated pixes should receive ...
1
vote
4answers
2k 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 variable. For ...
1
vote
2answers
1k 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.Real))
End Function
...
0
votes
1answer
100 views
question about complex values in java
We know that the general form of complex numbers is like this:
z=a+i*b, where i is sqrt(-1).
I have a question about how to express this in Java ?
0
votes
4answers
677 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 complex numbers, but ...