diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-11-30 20:41:37 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-11-30 20:41:37 -0600 |
commit | 6dec29bae70bb120ce40f64b0fc0f331dbb965f2 (patch) | |
tree | f2c1663245bb0eeae700bfc7c00e80576d793cf6 /utils | |
parent | 069173a5b71ecdec755fb796c967de97642259a7 (diff) | |
download | sddm-6dec29bae70bb120ce40f64b0fc0f331dbb965f2.tar.gz sddm-6dec29bae70bb120ce40f64b0fc0f331dbb965f2.tar.bz2 sddm-6dec29bae70bb120ce40f64b0fc0f331dbb965f2.zip |
update plot-fit-results to handle masked arrays properly
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/plot-fit-results | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/plot-fit-results b/utils/plot-fit-results index b568075..48d922a 100755 --- a/utils/plot-fit-results +++ b/utils/plot-fit-results @@ -152,7 +152,7 @@ if __name__ == '__main__': events.append(a) - a = np.concatenate(events) + a = np.ma.concatenate(events) bins = np.arange(50,1000,100) |