Created
September 17, 2021 19:51
-
-
Save cwindolf/47900447a48e98ef94f633a4a47bee1e to your computer and use it in GitHub Desktop.
np.roll, but not toroidal (backfills with 0s), and only 1d.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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