[Numpy-discussion] Axis Iterator?

Bill Baxter wbaxter at gmail.com
Thu Sep 14 22:05:13 EDT 2006


On 9/15/06, Tim Hochberg <tim.hochberg at ieee.org> wrote:
> Isn't swapaxis appropriate for this? In other words:
>

You're right.  Just didn't think of that.  Never used swapaxes before.

def axisiter(arr, i):
    return arr.swapaxes(0,i)

--bb




More information about the NumPy-Discussion mailing list