Upload log
Below is a list of the most recent file uploads. See the gallery of new files for a more visual overview.
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 20:27, 14 May 2016 Tom (talk | contribs) uploaded File:Sinhglyph.png (<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(-3,3,0.00001) f=np.vectorize(sinh) y=f(x) fig, ax = plt.subplots() #plt.ylim([...)
- 22:09, 13 May 2016 Tom (talk | contribs) uploaded File:Airysectors.png (<pre>\documentclass{article} \usepackage{tikz} \usepackage{graphicx} \usetikzlibrary{fadings} \begin{document} \begin{tikzpicture}[scale=0.4] \fill[gray,path fading=north] (0,0) -- (4*0.866025,2) -- (0,4) -- cycle; \fill[gray,path fading=west] (0,0) -...)
- 00:16, 28 February 2016 Tom (talk | contribs) uploaded File:Complexarccotangentglyph.png (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...)
- 00:06, 28 February 2016 Tom (talk | contribs) uploaded File:Complexarcsecantglyph.png (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...)
- 21:41, 27 February 2016 Tom (talk | contribs) uploaded File:Complexarccosecantglyph.png (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)...)
- 04:10, 26 February 2016 Tom (talk | contribs) uploaded File:Complexarctangentglyph.png (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...)
- 04:05, 26 February 2016 Tom (talk | contribs) uploaded File:Complexarccosine.png (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...)
- 04:04, 26 February 2016 Tom (talk | contribs) uploaded File:Complexarccosineglyph.png (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...)
- 04:01, 26 February 2016 Tom (talk | contribs) uploaded File:Complexarcsineglyph.png (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...)
- 03:28, 26 February 2016 Tom (talk | contribs) uploaded File:Arccotangentglyph.png (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,...)
- 03:20, 26 February 2016 Tom (talk | contribs) uploaded File:Arcsecantglyph.png (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...)
- 03:08, 26 February 2016 Tom (talk | contribs) uploaded File:Arccosecantglyph.png (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...)
- 03:04, 26 February 2016 Tom (talk | contribs) uploaded File:Arccosecantglyph.png (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.00001) x2=np.arange(-10,-1,0.00001) #x=np....)
- 02:35, 26 February 2016 Tom (talk | contribs) uploaded File:Arctangentglyph.png (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...)
- 02:29, 26 February 2016 Tom (talk | contribs) uploaded File:Arccosineglyph.png (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...)
- 02:14, 26 February 2016 Tom (talk | contribs) uploaded File:Arcsineglyph.png (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...)
- 01:53, 26 February 2016 Tom (talk | contribs) uploaded File:Arcsineglyph.png (#!/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 = plt.subplots() ax.spines['left']...)
- 05:30, 8 February 2016 Tom (talk | contribs) uploaded File:Complexexponentialplot.png (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...)
- 05:26, 8 February 2016 Tom (talk | contribs) uploaded File:Exponentialplot.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 x=np.arange(-3,3,0.001); f=np.vectorize(exp) y=f(x) fig, ax = plt.subplots...)
- 05:08, 8 February 2016 Tom (talk | contribs) uploaded a new version of File:Cotangentplot.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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(cot) y=f(x) f...)
- 05:01, 8 February 2016 Tom (talk | contribs) uploaded File:Complexcotangentplot.png (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...)
- 04:58, 8 February 2016 Tom (talk | contribs) uploaded File:Cotangentplot.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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(cot) y=f(x) f...)
- 04:55, 8 February 2016 Tom (talk | contribs) uploaded File:Secantplot.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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(sec) y=f(x) f...)
- 04:33, 8 February 2016 Tom (talk | contribs) uploaded File:Complexsecantplot.png (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...)
- 04:23, 8 February 2016 Tom (talk | contribs) uploaded File:Complexcosecantplot.png (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...)
- 04:18, 8 February 2016 Tom (talk | contribs) uploaded File:Cosecantplot.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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(csc) y=f(x) f...)
- 03:16, 8 February 2016 Tom (talk | contribs) uploaded File:Tangentplot.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 x=np.arange(-2*pi+0.0001,2*pi-0.001,0.00001); f=np.vectorize(tan) y=f(x) f...)
- 03:08, 8 February 2016 Tom (talk | contribs) uploaded File:Complextangentplot.png (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...)
- 03:00, 8 February 2016 Tom (talk | contribs) uploaded File:Complexcosineplot.png (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...)
- 02:44, 8 February 2016 Tom (talk | contribs) uploaded File:Complexsineplot.png (<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_...)
- 02:34, 8 February 2016 Tom (talk | contribs) uploaded File:Cosineplot.png (<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...)
- 02:00, 8 February 2016 Tom (talk | contribs) uploaded File:Sineplot.png (<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...)
- 02:00, 8 February 2016 Tom (talk | contribs) uploaded a new version of File:Sineplot.png (#!/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() xlabels = [...)
- 01:35, 8 February 2016 Tom (talk | contribs) uploaded a new version of File:Sineplot.png (<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() xlabe...)
- 21:00, 7 February 2016 Tom (talk | contribs) uploaded File:Complexcotangentglyph.png (Category:Cotangentglyph)
- 20:30, 7 February 2016 Tom (talk | contribs) uploaded File:Complexcosecantglyph.png (Category:Cosecantglyph)
- 20:25, 7 February 2016 Tom (talk | contribs) uploaded File:Complexsecantglyph.png (Category:Secantglyph)
- 20:21, 7 February 2016 Tom (talk | contribs) uploaded File:Complextangentglyph.png (Category:Tangentglyph)
- 20:17, 7 February 2016 Tom (talk | contribs) uploaded File:Complexcosineglyph.png (Category:Cosineglyph)
- 19:57, 7 February 2016 Tom (talk | contribs) uploaded File:Complexsineglyph.png
- 18:11, 29 January 2016 Tom (talk | contribs) uploaded File:Cotangentglyph.png (<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...)
- 18:09, 29 January 2016 Tom (talk | contribs) uploaded File:Secantglyph.png (<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...)
- 18:06, 29 January 2016 Tom (talk | contribs) uploaded File:Cosecantglyph.png (<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...)
- 17:59, 29 January 2016 Tom (talk | contribs) uploaded File:Tangentglyph.png (<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([...)
- 17:57, 29 January 2016 Tom (talk | contribs) uploaded File:Cosineglyph.png (<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([...)
- 17:55, 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'] = 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([...)
- 17:54, 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'] = 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([...)
- 17:51, 29 January 2016 Tom (talk | contribs) uploaded File:Sineglyph.png (#!/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.1,1...)
- 17:50, 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'] = 2.4,2.4 x=np.arange(-2*pi,2*pi,0.00001) f=np.vectorize(sin) y=f(x) fig, ax = plt.subplots() plt.yl...)
- 17:45, 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...)