All public logs

Jump to: navigation, search

Combined display of all available logs of specialfunctionswiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs      

 

Show tag log

  • 01:19, 6 July 2016 Tom (talk | contribs) uploaded a new version of File:Riemannplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def riemann(x): return nsum(lambda k: sin((k**2)*x)/(k**2),[1,inf])...)
  • 16:48, 27 January 2016 Tom (talk | contribs) automatically marked revision 3936 of page File:Riemannplot.png patrolled
  • 16:47, 27 January 2016 Tom (talk | contribs) uploaded File:Riemannplot.png (#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def riemann(x): return nsum(lambda k: sin(x*(k**2))/(k**2),[1,inf]) x=np.arange(0,1,0.001); f=np.vectorize(riemann) y=f(x) plt.xlabel('x') plt.ylabel('R...)