mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Fixed typo in filter.py
This commit is contained in:
parent
b9ad56a038
commit
81e3230add
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue