Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update interpolation_methods.py
Update according Phils suggestion.
  • Loading branch information
rutj3 committed Jan 14, 2014
commit 8ee3f14cf77d4c51de60edf7d992f17a62924e67
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

ax = ax.ravel()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Think this needs to be removed, and the lines 31 and 32 use the ax variable from the loop.


for n, interp in enumerate(methods):
for ax, interp_method in zip(axes, methods):
ax[n].imshow(grid, interpolation=interp)
ax[n].set_title(interp)

Expand Down