Am 31.10.2015 um 12:24 schrieb Schaff, Frederik:
list outlist = null
loop foreach i inlist --quiet
if var($i) > 1e-20 # some arbitrary small number
outlist += $i
elif var($i) < 1e-20
to be on the safe side, you should use "else" here or "<=". In
principle
a series with var($i) == 1e-20 isn't included in your code. (Although of
course the probability of having exactly 1e-20 is basically zero.)
-s