Skip to content

Instantly share code, notes, and snippets.

@cwindolf
Created September 17, 2021 19:51
Show Gist options
  • Save cwindolf/47900447a48e98ef94f633a4a47bee1e to your computer and use it in GitHub Desktop.
Save cwindolf/47900447a48e98ef94f633a4a47bee1e to your computer and use it in GitHub Desktop.
np.roll, but not toroidal (backfills with 0s), and only 1d.
import numpy as np
def zroll1d(arr1d, x):
"""np.roll, but not toroidal (backfills with 0s), and only 1d."""
if x == 0:
return arr1d
elif x > 0:
return np.pad(
arr1d[:-x],
((x, 0),),
)
else:
return np.pad(
arr1d[-x:],
((0, -x),),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment