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

  • 20:48, 5 July 2016 Tom (talk | contribs) uploaded a new version of File:Darbouxplot.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 darboux(x): return nsum(lambda k: sin(fac(k+1)*x)/fac(k),[1,inf...)
  • 18:25, 21 January 2016 Tom (talk | contribs) automatically marked revision 3890 of page File:Darbouxplot.png patrolled
  • 18:24, 21 January 2016 Tom (talk | contribs) uploaded File:Darbouxplot.png (#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def darboux(x): return nsum(lambda k: sin(fac(k+1)*x)/fac(k),[1,inf]) x=np.arange(0,5,0.0001); f=np.vectorize(darboux) y=f(x) plt.xlabel('x') plt.ylabel...)