fix: loop range in standard windowing procedure adjusted by gapsize

- Test added

Co-authored-by: Simon Kuberski <simon.kuberski@uni-muenster.de>
This commit is contained in:
Fabian Joswig 2023-02-27 21:43:29 +00:00
parent e85d7dfde6
commit d81d6ea0b8
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

View file

@ -1152,3 +1152,7 @@ def test_nan_obs():
o = pe.pseudo_Obs(1, .1, 'test')
no = np.nan * o
no.gamma_method()
o.idl['test'] = [1, 5] + list(range(7, 2002, 2))
no = np.NaN * o
no.gamma_method()