8000 Change default interpolation to nearest by jenshnielsen · Pull Request #5416 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Change default interpolation to nearest #5416

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
fix typo
  • Loading branch information
jenshnielsen committed Nov 8, 2015
commit 7357f1b865df103058ceebaf42b27ccc2271c4c5
2 changes: 1 addition & 1 deletion lib/matplotlib/image.py
5F3D
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ class NonUniformImage(AxesImage):
def __init__(self, ax, **kwargs):
"""
kwargs are identical to those for AxesImage, except
that 'nearest', and 'bilinear' are the only supported 'interpolation'
that 'nearest' and 'bilinear' are the only supported 'interpolation'
options.
"""
interp = kwargs.pop('interpolation', 'nearest')
Expand Down
0