inverted quantitative for signal prop

This commit is contained in:
marcell 2019-02-12 01:03:46 +00:00
parent 935f7b466c
commit 09d6521bad

View file

@ -59,7 +59,7 @@ def pointwise_sat(phi, dt=0.1):
if t is None:
res = [(t, v[phi]) for t, v in f(sig).items()]
return res if not quantitative else [((t, v > 0) for t, v in res)]
return res if quantitative else [((t, v > 0) for t, v in res)]
res = interp(f(sig), t, phi)
return res if quantitative else res > 0