Skip to content
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