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
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