inverted quantitative for signal prop
This commit is contained in:
parent
935f7b466c
commit
09d6521bad
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ def pointwise_sat(phi, dt=0.1):
|
||||||
|
|
||||||
if t is None:
|
if t is None:
|
||||||
res = [(t, v[phi]) for t, v in f(sig).items()]
|
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)
|
res = interp(f(sig), t, phi)
|
||||||
return res if quantitative else res > 0
|
return res if quantitative else res > 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue