timbral_models icon indicating copy to clipboard operation
timbral_models copied to clipboard

Timbral_Warmth.py:217: RuntimeWarning: divide by zero encountered in log10

Open olivecha opened this issue 3 years ago • 0 comments

The error occurs when there is a zero in the array :

spec[WR_upper_f_limit_idx:]

a working fix is replacing the line 217 with :

 above_WR_spec = [value if value == 0 else np.log10(value) for value in spec[WR_upper_f_limit_idx:]]

olivecha avatar Apr 01 '21 02:04 olivecha