def sinox(x): '''sin(x)/x''' if(abs(x) > 1e-2): return math.sin(x) / x else: return 1 - x*x / 6 + x*x*x*x / 120