[Numpy-discussion] Re: odd behaviour of meshgrid with 3 arrays

2024-11-21 Thread Slavin, Jonathan via NumPy-Discussion
n Thu, Nov 21, 2024 at 2:18 PM Robert Kern wrote: > On Thu, Nov 21, 2024 at 2:00 PM Slavin, Jonathan via NumPy-Discussion < > numpy-discussion@python.org> wrote: > >> Hi all, >> >> I was trying to use meshgrid with three arrays and got some odd results. >&g

[Numpy-discussion] odd behaviour of meshgrid with 3 arrays

2024-11-21 Thread Slavin, Jonathan via NumPy-Discussion
Hi all, I was trying to use meshgrid with three arrays and got some odd results. Here's a simple example: xt = np.array([1,2,3,4]) yt = np.array([6,7,8]) zt = np.array([12,13]) xxx,yyy,zzz = np.meshgrid(xt,yt,zt) So I would expect that xxx[0,0,:] = array([1,2,3,4]) instead I get xxx[0,0,:] = array