1 | initial version |
Here is what it looks like
sage: def f(x):
....: return sum(sin(k*x)/(k**2+1) for k in range(1000))
sage: plot(f,0,2*pi)
Not clear if this is a known function.
2 | No.2 Revision |
Here is what it looks like
sage: def f(x):
....: return sum(sin(k*x)/(k**2+1) for k in range(1000))
sage: plot(f,0,2*pi)
Not clear if this is a known function.