Upload log

Jump to: navigation, search

Below is a list of the most recent file uploads. See the gallery of new files for a more visual overview.

Logs      

 

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 17:44, 29 January 2016 Tom (talk | contribs) uploaded File:Sineglyph.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 1.2,1.2 x=np.arange(-2*pi,2*pi,0.0001) f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() plt.yli...)
  • 17:43, 29 January 2016 Tom (talk | contribs) uploaded File:Sineglyph.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 1.2,1.2 x=np.arange(-2*pi,2*pi,0.0001) f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() plt.yli...)
  • 17:36, 29 January 2016 Tom (talk | contribs) uploaded File:Sineglyph.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 0.6, 0.6 x=np.arange(-2*pi,2*pi,0.001) f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() plt.yli...)
  • 17:34, 29 January 2016 Tom (talk | contribs) uploaded File:Sineglyph.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 0.6, 0.6 x=np.arange(-2*pi,2*pi,0.001) f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() plt.yli...)
  • 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...)
  • 02:05, 25 January 2016 Tom (talk | contribs) uploaded File:Sineplot.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * x=np.arange(-2*pi,2*pi,0.00001); f=np.vectorize(sin) y=f(x) plt.xlabel('x') plt.ylabel('sin(x)') plt.plot(x,y,linewidth=0.5) plt.savefig('sineplot.png') </...)
  • 19:38, 22 January 2016 Tom (talk | contribs) uploaded File:Faberf2plot.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def distfnc(x): return min(x-floor(x),ceil(x)-x) def faber2(x): return nsum(lambda k: distfnc(2**(fac(k))*x)/(fac(k)),[1,inf]) x=np.arang...)
  • 19:30, 22 January 2016 Tom (talk | contribs) uploaded File:Faberf1plot.png (<pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def distfnc(x): return min(x-floor(x),ceil(x)-x) def faber1(x): return nsum(lambda k: distfnc(2**(fac(k))*x)/(10.0**k),[1,inf]) x=np.aran...)
  • 19:21, 22 January 2016 Tom (talk | contribs) uploaded File:Faberf1plot.png (#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def distfnc(x): return min(x-floor(x),ceil(x)-x) def faber1(x): return nsum(lambda k: distfnc(2**(fac(k))*x)/(10.0**k),[1,inf]) x=np.arange(0.0...)
  • 17:44, 22 January 2016 Tom (talk | contribs) uploaded File:Vanderwaerdenplot.png (<pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def distfnc(x): return min(x-floor(x),ceil(x)-x) def vanderwaerden(x): return nsum(lambda k: distfnc((10.0**k)*x)/(10.0**k),[0,inf]) x=np....)
  • 17:12, 22 January 2016 Tom (talk | contribs) uploaded File:Takagiplot.png (<pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * def distfnc(x): return min(x-floor(x),ceil(x)-x) def takagi(x): return nsum(lambda k: distfnc((2.0**k)*x)/(2**k),[0,inf]) x=np.arange(0.0,...)
  • 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...)
  • 13:19, 5 January 2016 Tom (talk | contribs) uploaded File:Riemannfunction.gif (R[x_, N_] := Sum[Sin[k^2*x]/k^2, {k, 1, N}] plotme = Table[ Plot[R[x, N], {x, -5, 5}, PlotLegends -> Placed[StringJoin["N=", ToString[N]], Bottom], PlotRange -> {-1.5, 1.5}, PlotStyle -> Thickness[0.001]], {N, 1, 25, 1}]; Export["ri...)
  • 17:43, 31 December 2015 Tom (talk | contribs) uploaded File:Scorerhithumb.png (Plot[ScorerHi[x], {x, -3, 3}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 17:42, 31 December 2015 Tom (talk | contribs) uploaded File:Scorergithumb.png (Plot[ScorerGi[x], {x, -3, 3}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 09:42, 9 November 2015 Tom (talk | contribs) uploaded File:Cothplot.png
  • 09:41, 9 November 2015 Tom (talk | contribs) uploaded File:Sechplot.png
  • 09:41, 9 November 2015 Tom (talk | contribs) uploaded File:Cschplot.png
  • 09:40, 9 November 2015 Tom (talk | contribs) uploaded File:Tanhplot.png
  • 09:39, 9 November 2015 Tom (talk | contribs) uploaded File:Coshplot.png
  • 09:38, 9 November 2015 Tom (talk | contribs) uploaded File:Sinhplot.png
  • 09:33, 9 November 2015 Tom (talk | contribs) uploaded File:Arctanhplot.png
  • 09:31, 9 November 2015 Tom (talk | contribs) uploaded File:Arcsinhplot.png
  • 00:07, 7 September 2015 Tom (talk | contribs) uploaded File:Besselj1thumb.png (Plot[BesselJ[1, x], {x, -15, 15}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None] Category:BesselJThumb)
  • 05:05, 4 September 2015 Tom (talk | contribs) uploaded File:Chebthetathumb.png (ChebTheta[x_] := Sum[Log[Prime[k]], {k, 1, PrimePi[x]}] Export["chebthetathumb.png", Plot[ChebTheta[x], {x, 0, 20}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None]])
  • 05:00, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevplotto50.png (ChebTheta[x_] := Sum[Log[Prime[k]], {k, 1, PrimePi[x]}] Export["chebyshevplotto50.png", Plot[ChebTheta[x], {x, 2, 50}]])
  • 04:59, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevplotto1000.png (ChebTheta[x_] := Sum[Log[Prime[k]], {k, 1, PrimePi[x]}] Export["chebyshevplotto100.png", Plot[ChebTheta[x], {x, 2, 100}]])
  • 04:59, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevplotto100.png (ChebTheta[x_] := Sum[Log[Prime[k]], {k, 1, PrimePi[x]}] Export["chebyshevplotto100.png", Plot[ChebTheta[x], {x, 2, 100}]])
  • 04:58, 4 September 2015 Tom (talk | contribs) uploaded a new version of File:Chebyshevpsiplotto100.png (Reverted to version as of 04:02, 4 September 2015)
  • 04:57, 4 September 2015 Tom (talk | contribs) uploaded a new version of File:Chebyshevpsiplotto100.png (ChebTheta[x_] := Sum[Log[Prime[k]], {k, 1, PrimePi[x]}] Export["chebyshevplotto100.png", Plot[ChebTheta[x], {x, 2, 100}]])
  • 04:56, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevthetaplotto50.png (ChebTheta[x_] := Sum[Log[Prime[k]], {k, 1, PrimePi[x]}] Plot[ChebTheta[x], {x, 2, 50}])
  • 04:06, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevpsithumb.png
  • 04:05, 4 September 2015 Tom (talk | contribs) uploaded a new version of File:Chebyshevpsiplotto1000.png (ChebPsi[x_] := Sum[MangoldtLambda[k], {k, 1, Floor[x]}] Plot[ChebPsi[x], {x, 0, 20}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 04:02, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevpsiplotto1000.png (ChebPsi[t_] := Sum[MangoldtLambda[k], {k, 1, Floor[t]}] Plot[ChebPsi[t], {t, 0, 1000}])
  • 04:02, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevpsiplotto100.png (ChebPsi[t_] := Sum[MangoldtLambda[k], {k, 1, Floor[t]}] Plot[ChebPsi[t], {t, 0, 100}])
  • 03:33, 4 September 2015 Tom (talk | contribs) uploaded File:Chebyshevpsiplotto100.png (ChebPsi[t_] := Sum[MangoldtLambda[k], {k, 1, Floor[t]}] Plot[ChebPsi[k], {k, 1, 1000}])
  • 23:21, 25 August 2015 Tom (talk | contribs) uploaded File:Domcolinversegudermannian.png (ComplexGraph[Gudermannian, {-10, 10}, {-10, 10}])
  • 23:20, 25 August 2015 Tom (talk | contribs) uploaded File:Inversegudermannianplot.png (Plot[InverseGudermannian[t], {t, -15, 15}])
  • 23:12, 25 August 2015 Tom (talk | contribs) uploaded File:Inversegudermannianthumb.png (Plot[InverseGudermannian[x], {x, -10, 10}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 23:07, 25 August 2015 Tom (talk | contribs) uploaded File:Domcolgudermannian.png (ComplexGraph[Gudermannian, {-10, 10}, {-10, 10}])
  • 23:07, 25 August 2015 Tom (talk | contribs) uploaded File:Gudermannianplot.png (Plot[Gudermannian[t], {t, -5, 5}])
  • 22:17, 25 August 2015 Tom (talk | contribs) uploaded File:Gudermannianthumb.png (Plot[Gudermannian[x], {x, -5, 5}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 04:32, 21 August 2015 Tom (talk | contribs) uploaded File:Jincthumb.png (Plot[Jinc[x], {x, -15, 15}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 04:31, 21 August 2015 Tom (talk | contribs) uploaded a new version of File:Jincthumb.png (Plot[Jinc[x], {x, -15, 15}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 04:28, 21 August 2015 Tom (talk | contribs) uploaded File:Domcoljinc.png (Jinc[t_] := BesselJ[1, t]/t ComplexGraph[Jinc, {-10, 10}, {-10, 10}])
  • 04:27, 21 August 2015 Tom (talk | contribs) uploaded File:Jincplot.png (Plot[Jinc[t], {t, -15, 15}])
  • 04:26, 21 August 2015 Tom (talk | contribs) uploaded File:Jincthumb.png (Plot[Jinc[x], {x, -1.2, 1.2}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 04:00, 21 August 2015 Tom (talk | contribs) uploaded File:Inverseerfthumb.png (Plot[InverseErf[x], {x, -1.2, 1.2}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
  • 03:56, 21 August 2015 Tom (talk | contribs) uploaded File:Domcolerfi.png (ComplexGraph[Erfi, {-7, 7}, {-7, 7}])
  • 03:52, 21 August 2015 Tom (talk | contribs) uploaded File:Erfithumb.png (Plot[Erfi[x], {x, -3, 3}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None])
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)