If I use
Chop[10^-4, 10^-3]
then I'd expect the output to be zero. However, this is not the case. There is of course a very easy workaround since I can define my own "chop"
chop[x_,dx_] := If[Abs[x] < dx, 0, x]
but why is the innate version failing?
Chop: "Chop works on both Real and Complex numbers." :) – Öskå Jan 14 '15 at 15:40