Comment 1 for bug 134919

Revision history for this message
Stijn de Waele (stijn-de-waele1973) wrote :

!!!The order of current line 312 and improvement is wrong...

Last lines of the bug report should read:
line 312 is now:
            X, Y = [nx.ravel(a) for a in meshgrid(nx.arange(nc), nx.arange(nr))]
This work as expected with:
            X, Y = [nx.ravel(a) for a in meshgrid(nx.arange(nr), nx.arange(nc))]