You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
get_noise_profile() always returns the same value for amp_total.
amp_total = (low + mid + high) / 3.0
low, mid, high are parameters. Shouldn't that be
amp_total = (amp_low + amp_mid + amp_high) / 3.0
?