[Numpy-discussion] simple rectangular grid

josef.pktd at gmail.com josef.pktd at gmail.com
Thu Apr 15 14:48:05 EDT 2010


On Thu, Apr 15, 2010 at 2:42 PM, Neal Becker <ndbecker2 at gmail.com> wrote:
> Is there a simple way to create a rectangular grid, like this loopy code:
> (This is for a QAM256 constellation, btw):
>
> import numpy as np
>
> u = np.arange (-7.5, 8)
>
> const = np.empty ((16,16), dtype=complex)
>
> for ix in range (16):
>    for iy in range (16):
>        const[ix, iy] = u[ix] + 1j*u[iy]

>>> const2 = u[:,None] + 1j*u
>>> (const == const2).all()
True

Josef
>
>
> _______________________________________________
> NumPy-Discussion mailing list
> NumPy-Discussion at scipy.org
> http://mail.scipy.org/mailman/listinfo/numpy-discussion
>



More information about the NumPy-Discussion mailing list