How to make 2d complex number array in numpy?
I would like to make a 2d array of even distribution of complex numbers, a part of complex plane, for example (-1, 1i), (-1, -1i), (1, 1i), (1, -1i) with 20 numbers in each dimension. I know I can do this for complex numbers in 1 d with np.linspace like this: import numpy as np… Read More How to make 2d complex number array in numpy?