Fixed typo in filter.py

This commit is contained in:
Will Boyd 2016-11-28 19:25:02 -05:00
parent b9ad56a038
commit 81e3230add

View file

@ -1323,7 +1323,7 @@ class PolarFilter(Filter):
# Extract the lower and upper angle bounds, then repeat and tile
# them as necessary to account for other filters.
lo_bins = np.repeat(self.bins[:-1], self.stride)
hi_bins = np.repeast(self.bins[1:], self.stride)
hi_bins = np.repeat(self.bins[1:], self.stride)
tile_factor = data_size / len(lo_bins)
lo_bins = np.tile(lo_bins, tile_factor)
hi_bins = np.tile(hi_bins, tile_factor)