File list
This special page shows all uploaded files.
First page |
Previous page |
Next page |
Last page |
Date | Name | Thumbnail | Size | Description | Versions |
---|---|---|---|---|---|
00:16, 28 February 2016 | Complexarccotangentglyph.png (file) | 148 KB | Category:Arccotangentglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: acot(x),[-3,3],[-3,3],points=400000,verbose... | 1 | |
00:06, 28 February 2016 | Complexarcsecantglyph.png (file) | 148 KB | Category:Arcsecantglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: asec(x),[-1,1],[-1,1],points=400000,verbose=Tr... | 1 | |
21:41, 27 February 2016 | Complexarccosecantglyph.png (file) | 148 KB | Category:Arccosecant <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: acsc(x),[-2,2],[-2,2],points=400000,verbose=True)... | 1 | |
04:10, 26 February 2016 | Complexarctangentglyph.png (file) | 148 KB | Category:Arctangentglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: atan(x),[-2,2],[-2,2],points=400000,verbose=T... | 1 | |
04:05, 26 February 2016 | Complexarccosine.png (file) | 148 KB | Category:Arccosineglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: acos(x),[-2,2],[-2,2],points=400000,verbose=Tr... | 1 | |
04:01, 26 February 2016 | Complexarcsineglyph.png (file) | 148 KB | Category:Arcsine <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: asin(x),[-2,2],[-2,2],points=400000,verbose=True) plt... | 1 | |
03:28, 26 February 2016 | Arccotangentglyph.png (file) | 4 KB | Category:Arccotangentglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x1=np.arange(-10,-0.000001,0.00001) x2=np.arange(0.000001,10,... | 1 | |
03:20, 26 February 2016 | Arcsecantglyph.png (file) | 4 KB | Category:Arcsecantglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x1=np.arange(1,10,0.00001) x2=np.arange(-10,-1,0.00001) #x=np.co... | 1 | |
03:08, 26 February 2016 | Arccosecantglyph.png (file) | 4 KB | Category:Arccosecantglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x1=np.arange(1,10,0.001) x2=np.arange(-10,-1,0.001) f=np.vecto... | 1 | |
02:35, 26 February 2016 | Arctangentglyph.png (file) | 4 KB | Category:Arctangentglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-10,10,0.00001) f=np.vectorize(atan) y=f(x) fig, a... | 1 | |
02:29, 26 February 2016 | Arccosineglyph.png (file) | 5 KB | Category:Arccosineglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-1,1,0.001) f=np.vectorize(acos) y=f(x) fig, ax = p... | 1 | |
02:14, 26 February 2016 | Arcsineglyph.png (file) | 5 KB | Category:Arcsineglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-1,1,0.00001) f=np.vectorize(asin) y=f(x) fig, ax = p... | 1 | |
05:30, 8 February 2016 | Complexexponentialplot.png (file) | 71 KB | Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(exp,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\exp(z)$.') plt.savefig('complexexponentia... | 1 | |
05:26, 8 February 2016 | Exponentialplot.png (file) | 25 KB | 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 x=np.arange(-3,3,0.001); f=np.vectorize(exp) y=f(x) fig, ax = plt.subplots... | 1 | |
05:08, 8 February 2016 | Cotangentplot.png (file) | 38 KB | 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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(cot) y=f(x) f... | 2 | |
05:01, 8 February 2016 | Complexcotangentplot.png (file) | 69 KB | Category:DomainColorings <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(cot,[-10,10],[-5,5],points=50000,verbose=True) plt.title(r'Domain coloring of $\cot(z)$.') plt.savefig('complexcotangentp... | 1 | |
04:55, 8 February 2016 | Secantplot.png (file) | 36 KB | 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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(sec) y=f(x) f... | 1 | |
04:33, 8 February 2016 | Complexsecantplot.png (file) | 99 KB | Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(sec,[-10,10],[-10,10],points=50000,verbose=True) plt.title(r'Domain coloring of $\sec(z)$.') plt.savefig('complexsecantplo... | 1 | |
04:23, 8 February 2016 | Complexcosecantplot.png (file) | 99 KB | Category:DomainColoring <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(csc,[-10,10],[-10,10],points=50000,verbose=True) plt.title(r'Domain coloring of $\csc(z)$.') plt.savefig('complexcosecant... | 1 | |
04:18, 8 February 2016 | Cosecantplot.png (file) | 35 KB | 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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(csc) y=f(x) f... | 1 | |
03:16, 8 February 2016 | Tangentplot.png (file) | 37 KB | 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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(tan) y=f(x) f... | 1 | |
03:08, 8 February 2016 | Complextangentplot.png (file) | 69 KB | Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(tan,[-10,10],[-5,5],points=50000,verbose=True) plt.title(r'Domain coloring of $\tan(z)$.') plt.savefig('complextangentplot... | 1 | |
03:00, 8 February 2016 | Complexcosineplot.png (file) | 100 KB | Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(cos,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\cos(z)$.') plt.savefig('complexcosineplot... | 1 | |
02:44, 8 February 2016 | Complexsineplot.png (file) | 100 KB | <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(sin,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\sin(z)$.') plt.savefig('complexsineplot.png',bbox_inches='tight',pad_... | 1 | |
02:34, 8 February 2016 | Cosineplot.png (file) | 41 KB | <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 x=np.arange(-2*pi,2*pi,0.00001); f=np.vectorize(cos) y=f(x) fig, ax = plt.subplots() xlabe... | 1 | |
02:00, 8 February 2016 | Sineplot.png (file) | 41 KB | <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 x=np.arange(-2*pi,2*pi,0.00001); f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() xlabel... | 1 | |
21:00, 7 February 2016 | Complexcotangentglyph.png (file) | 148 KB | Category:Cotangentglyph | 1 | |
20:30, 7 February 2016 | Complexcosecantglyph.png (file) | 148 KB | Category:Cosecantglyph | 1 | |
20:25, 7 February 2016 | Complexsecantglyph.png (file) | 148 KB | Category:Secantglyph | 1 | |
20:21, 7 February 2016 | Complextangentglyph.png (file) | 148 KB | Category:Tangentglyph | 1 | |
20:17, 7 February 2016 | Complexcosineglyph.png (file) | 149 KB | Category:Cosineglyph | 1 | |
19:57, 7 February 2016 | Complexsineglyph.png (file) | 148 KB | 1 | ||
18:11, 29 January 2016 | Cotangentglyph.png (file) | 5 KB | <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0.0000001,2*pi,0.00001) f=np.vectorize(cot) y=f(x) fig, ax = plt.subplots() pl... | 1 | |
18:09, 29 January 2016 | Secantglyph.png (file) | 5 KB | <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0.0000001,2*pi,0.00001) f=np.vectorize(sec) y=f(x) fig, ax = plt.subplots() pl... | 1 | |
18:06, 29 January 2016 | Cosecantglyph.png (file) | 5 KB | <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0.0000001,2*pi,0.00001) f=np.vectorize(csc) y=f(x) fig, ax = plt.subplots() pl... | 1 | |
17:59, 29 January 2016 | Tangentglyph.png (file) | 4 KB | <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0,2*pi,0.00001) f=np.vectorize(tan) y=f(x) fig, ax = plt.subplots() plt.ylim([... | 1 | |
17:57, 29 January 2016 | Cosineglyph.png (file) | 6 KB | <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0,2*pi,0.00001) f=np.vectorize(cos) y=f(x) fig, ax = plt.subplots() plt.ylim([... | 1 | |
17:55, 29 January 2016 | Sineglyph.png (file) | 6 KB | <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0,2*pi,0.00001) f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() plt.ylim([... | 1 | |
13:19, 5 January 2016 | Riemannfunction.gif (file) | 285 KB | 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... | 1 | |
17:43, 31 December 2015 | Scorerhithumb.png (file) | 7 KB | Plot[ScorerHi[x], {x, -3, 3}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None] | 1 | |
17:42, 31 December 2015 | Scorergithumb.png (file) | 16 KB | Plot[ScorerGi[x], {x, -3, 3}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None] | 1 | |
00:07, 7 September 2015 | Besselj1thumb.png (file) | 9 KB | Plot[BesselJ[1, x], {x, -15, 15}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None] Category:BesselJThumb | 1 | |
05:05, 4 September 2015 | Chebthetathumb.png (file) | 2 KB | 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]] | 1 | |
04:58, 4 September 2015 | Chebyshevpsiplotto100.png (file) | 6 KB | Reverted to version as of 04:02, 4 September 2015 | 3 | |
04:06, 4 September 2015 | Chebyshevpsithumb.png (file) | 2 KB | 1 | ||
04:05, 4 September 2015 | Chebyshevpsiplotto1000.png (file) | 10 KB | 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] | 2 | |
23:21, 25 August 2015 | Domcolinversegudermannian.png (file) | 25 KB | ComplexGraph[Gudermannian, {-10, 10}, {-10, 10}] | 1 | |
23:20, 25 August 2015 | Inversegudermannianplot.png (file) | 12 KB | Plot[InverseGudermannian[t], {t, -15, 15}] | 1 | |
23:12, 25 August 2015 | Inversegudermannianthumb.png (file) | 5 KB | Plot[InverseGudermannian[x], {x, -10, 10}, PlotStyle -> {Thickness[0.04], Black}, AxesStyle -> Thickness[0.01], Ticks -> None] | 1 | |
23:07, 25 August 2015 | Domcolgudermannian.png (file) | 25 KB | ComplexGraph[Gudermannian, {-10, 10}, {-10, 10}] | 1 |
First page |
Previous page |
Next page |
Last page |