Tagged Questions
The complex-numbers tag has no wiki summary.
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 ...
10
votes
2answers
257 views
What is wrong with this fourier transform implementation
I'm trying to implement a discrete fourier transform, but it's not working. I'm probably have written a bug somewhere, but I haven't found it yet.
Based on the following formula:
This function ...
9
votes
1answer
447 views
How to work with complex numbers in C?
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 ...
7
votes
2answers
384 views
GDB - Accessing real and imaginary parts of a complex number
When debugging a program which uses (either C or C++), gdb displays complex numbers as _M_value = xxx + yyy*I (with a type of complex double).
While debugging, I need to print that number ...
6
votes
3answers
2k views
Plot a complex function in Mathematica
How can I make a Mathematica graphics that copies the behaviour of complex_plot in sage? i.e.
... takes a complex function of one
variable, and plots output of the
function over the ...
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!
5
votes
2answers
136 views
Mathematica: finding the conditions for the real part of a complex number to be positive, unexpected/redundant output of Reduce
I need to find the conditions for the real part of a complex number to be negative. I thought Reduce would be perfect for this, but it gives redundant output (even after simplification). For example: ...
5
votes
2answers
307 views
How to save and load an array of complex numbers using numpy.savetxt?
I want to use numpy.savetxt() to save an array of complex numbers to a text file. Problems:
If you save the complex array with the default format string, the imaginary part is discarded.
If you use ...
5
votes
4answers
648 views
C++ operator overloading for complex number operations
I have an assignment in C++ and I'm having trouble getting started. The goal is to "design a class that uses the following overloaded operators for complex numbers: >> << + - * / "
My question ...
5
votes
2answers
843 views
Better use a tuple or numpy array for storing coordinates
I'm porting an C++ scientific application to python, and as I'm new to python, some problems come to my mind:
1) I'm defining a class that will contain the coordinates (x,y). These values will be ...
4
votes
4answers
224 views
Multiply Large Complex Number Vector by Scalar efficiently C++
I'm currently trying to most efficiently do an in-place multiplication of an array of complex numbers (memory aligned the same way the std::complex would be but currently using our own ADT) by an ...
4
votes
1answer
410 views
Use scipy.integrate.quad to integrate complex numbers
I'm using right now the scipy.integrate.quad to successfully integrate some real integrands. Now a situation appeared that I need to integrate a complex integrand. quad seems not be able to do it, as ...
4
votes
1answer
161 views
What's the fastest way to convert an interleaved NumPy integer array to complex64?
I have a stream of incoming data that has interleaved real and imaginary integers. Converting these to complex64 values is the slowest operation in my program. This is my current approach:
import ...
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
2answers
313 views
How to convert a string to complex<float> in C++?
How do I easily convert a string containing two floats separated by a comma into a complex?
For instance:
string s = "123,5.3";//input
complex<float> c(123,5.3);//output/what I need
Is there ...
3
votes
2answers
316 views
How to use c++ std complex numbers in QtScript
I try to find out how to use complex numbers in QtScripts such that slots defined with complex arguments can be called from a QtScript. Also basic algebra (+,-,exp, ... ) of complex-numbers should be ...
3
votes
3answers
892 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
1answer
70 views
python solving differential equation with complex variables
folks,
Is it possible to solve ODE with complex variable in python? The equation I have has the following form
dx/dt = -a x -i y(t)
where y(t) is a known function, a is a known number and i is the ...
2
votes
2answers
53 views
Plotting Complex Numbers in Python?
For a math fair project I want to make a program that will generate a Julia set fractal. To do this i need to plot complex numbers on a graph. Does anyone know how to do this? Remember I am using ...
2
votes
2answers
62 views
Formating Complex Numbers in Python
For a project in one of my classes we have to output numbers up to five decimal places.It is possible that the output will be a complex number and I am unable to figure out how to output a complex ...
2
votes
2answers
231 views
complex numbers in python
hi all
is there some library for large precision complex numbers in python?
2
votes
1answer
465 views
Discrete Fourier Transform (Not FFT) In Java
I'm doing an assignment for a CSE class in Java and am implementing a FFT and the direct DFT (with matrix calculations). My FFT works fine, but my direct DFT is not working. My Fourier matrix is not ...
2
votes
1answer
209 views
Is there a better way to read complex binary data in C?
I have written some code in C to read a binary file containing complex numbers. It works, but I am uncomfortable with the cast I need to perform. Is there a better way? Speed is critical in my program ...
2
votes
3answers
448 views
trying to divide complex numbers, division by zero
I'm trying the program below to divide complex numbers, it works for complex numbers but not when the denominator is real (i.e, the complex part is zero). Division by zero occurs in this line ratio = ...
2
votes
1answer
229 views
Genetic Programming with the Mandelbrot Set
I'm reading a chapter in this fascinating book about using genetic programming to interactively evolve images. Most of the function set is comprised of simple arithmetic and trig functions (which ...
2
votes
1answer
666 views
Complex numbers: fast cartesian to polar conversion
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:
Q.phase = atan2 ...
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
364 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:
ComplexNum ...
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
2answers
48 views
Math::Complex screwing up my array references
I'm trying to optimize some code here, and wrote two different simple subroutines that will subtract one vector from another. I pass a pair of vectors to these subroutines and the subtraction is then ...
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
1answer
142 views
Using BLAS or LAPACK with Xcode
I'm looking for a good guide on how to incorporate BLAS or LAPACK functions into my Objective C Program developed through Xcode. The only sources I can find online of programs in BLAS/LAPACK are ...
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
1answer
406 views
Mathematica, Arg and Simplify
I've got problems in using Mathematica with complex numbers. Am I doing something wrong?
Two examples:
ComplexExpand[(x + I y)^(1/2)]
yields (x^2 + y^2)^(1/4) Cos[1/2 Arg[x + I y]] + I (x^2 + ...
1
vote
3answers
357 views
How should i get complex numbers from string?
I found following pattern from RegexLibrary, and i don't know how use Match to get Re and Im values. I'm new in Regex. Is it a correct way to get data from a pattern?
If it's true, I need some sample ...
1
vote
3answers
305 views
random complex number
i need algorithm for generate random complex number please help i know how generate random number but random complex number confuse me
1
vote
1answer
308 views
complex number types in mixing C(99) and C++
I'm writing a math library, the core of it is in C++. Later it may be implemented in pure C (C99 I suppose). I think I need a C like API so that I can get Python and matlab and the like to use the ...
1
vote
2answers
242 views
splint failing on code that includes complex.h
I'm trying to run splint on a C source that includes complex.h from the standard C library to support complex arithmetic.
Unfortunately, splint fails with the following error.
Splint 3.1.2 --- ...
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
1answer
129 views
Why does this code return 'complex'?
# Example: provide pickling support for complex numbers.
try:
complex
except NameError:
pass
else:
def pickle_complex(c):
return complex, (c.real, c.imag) # why return complex ...
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
3answers
47 views
How to write a function to map points on a canvas to points on the real plane
I'm writing a simple Mandelbrot visualiser in Python onto a pygame Screen. For each pixel on the 600 by 600 Screen, I am plotting whether or not this pixel, (x, y) as a complex number, is in the ...
0
votes
3answers
116 views
How to include a C system header instead of a C++ system header of the same name in a C++ program?
My Mac OS X system seems to have several different versions of the header file complex.h, and they are incompatible.
/usr/include/complex.h defines the C99 implementation of _Complex numbers,
...
0
votes
1answer
210 views
Question about using Maple's arrow (->) notation
Hi can someone show me how to do this:
Your function should take a Maple list of complex numbers as its input and return the largest modulus from that list.
0
votes
2answers
386 views
How to use complex numbers in c++?
may you tell me how to write a complex variable in C++ code please?
I do have separate real part psi_rl and imaginary part psi_im. Now I have to write psi = psi_rl + i psi_im. Do you have any idea ...
0
votes
2answers
340 views
How to do Speedy Complex Arithmetic in C#
I'm working on a C# Fractal Generator project right now that requires lots of Arithmetic with Complex numbers, and I'm trying to think of ways to speed up the math. Below is a simplified set of code ...