10000 fix deprecation warning in simple linear interpolation by aestrivex · Pull Request #3348 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

fix deprecation warning in simple linear interpolation #3348

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
Changes from all commits
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
fix deprecation warning in simple linear interpolation
  • Loading branch information
aestrivex committed Aug 6, 2014
commit c4b9595aeb08fe78c8b0bfa850e11b9bc24b9903
2 changes: 1 addition & 1 deletion lib/matplotlib/cbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -1737,7 +1737,7 @@ def simple_linear_interpolation(a, steps):
if steps == 1:
return a

steps = np.floor(steps)
steps = int(np.floor(steps))
new_length = ((len(a) - 1) * steps) + 1
new_shape = list(a.shape)
new_shape[0] = new_length
Expand Down
0