File list

Jump to: navigation, search

This special page shows all uploaded files.

File list
 
First page
Last page
Date Name Thumbnail Size Description Versions
08:12, 16 May 2016 Complextanhplot.png (file) 60 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(tanh,[-5,5],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{tanh}(z)$.') plt.savefig('complexta... 1
08:09, 16 May 2016 Complexcoshplot.png (file) 102 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(cosh,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{cosh}(z)$.') plt.savefig('complex... 1
08:05, 16 May 2016 Complexsinhplot.png (file) 104 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(sinh,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{sinh}(z)$.') plt.savefig('complex... 1
07:46, 16 May 2016 Complexairybiplot.png (file) 207 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(airybi,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{Bi}(z)$.') plt.savefig('complex... 1
07:44, 16 May 2016 Airybiplot.png (file) 42 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 x1=np.arange(-14.8,2,0.01); x2=x1 f=np.vectorize(airybi) def g(x):... 1
07:37, 16 May 2016 Airyaiplot.png (file) 49 KB Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(airyai,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{Ai}(z)$.') plt.savefig('complexairyaiplot... 1
07:22, 16 May 2016 Complexairyaiplot.png (file) 187 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(airyai,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{Ai}(z)$.') plt.savefig('complex... 2
06:44, 16 May 2016 Complexairybiglyph.png (file) 52 KB Category:Airybiglyph <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: airybi(x),[-10,10],[-10,10],points=400000,verbose... 1
06:32, 16 May 2016 Complexairyaiglyph.png (file) 45 KB Category:Airyaiglyph <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: airyai(x),[-10,10],[-10,10],points=400000,verbose... 1
06:30, 16 May 2016 Airybiglyph.png (file) 7 KB Category:Airybiglyph <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,0.7,0.001) f=np.vectorize(airybi) y=f(x) fig, ax =... 1
06:09, 16 May 2016 Airyaiglyph.png (file) 8 KB Category:Airyaiglyph <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(-15,3,0.001) f=np.vectorize(airyai) y=f(x) fig, ax = p... 1
06:00, 16 May 2016 Arccotplot.png (file) 24 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 x1=np.arange(-20,-0.01,0.0001); x2=np.arange(0.01,20,0.0001); x3=np.arange(... 1
05:36, 16 May 2016 Complexgammaplot.png (file) 186 KB Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(gamma,[-7,7],[-7,7],points=500000,verbose=True) plt.title('Domain coloring of $\Gamma(z)$.') plt.savefig('complexgammaplot.png',bbox... 1
05:17, 16 May 2016 Arcsecplot.png (file) 21 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 x1=np.arange(-20,-1,0.0001); x2=np.arange(1,20,0.0001); x3=np.arange(-20,20... 1
04:39, 16 May 2016 Arccscplot.png (file) 24 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 x1=np.arange(-10,-1,0.0001); x2=np.arange(1,10,0.0001); f=np.vectorize(acsc... 1
04:13, 16 May 2016 Arctanplot.png (file) 22 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(-20,20,0.0001); f=np.vectorize(atan) y=f(x) fig, ax = plt.subp... 1
03:59, 16 May 2016 Arccosplot.png (file) 31 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(-1,1,0.0001); f=np.vectorize(acos) y=f(x) fig, ax = plt.subplo... 1
03:51, 16 May 2016 Arcsinplot.png (file) 29 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(-1,1,0.0001); f=np.vectorize(asin) y=f(x) fig, ax = plt.subplo... 1
01:20, 16 May 2016 Complexriemannzeta.png (file) 99 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(zeta,[-40,40],[-40,40],points=500000,verbose=True) plt.title('Domain coloring of $\mathrm{\zeta}(z)$.') plt.savefig('compl... 1
23:07, 15 May 2016 Complexarcsecplot.png (file) 76 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(asec,[-1.5,1.5],[-1.5,1.5],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{arcsec}(z)$.') plt.savefig('c... 1
23:05, 15 May 2016 Complexarccotplot.png (file) 95 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(acot,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{arccot}(z)$.') plt.savefig('compl... 1
22:56, 15 May 2016 Complexarccscplot.png (file) 101 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(acsc,[-10,10],[-10,10],points=50000,verbose=True) plt.title('Domain coloring of $\mathrm{arccsc}(z)$.') plt.savefig('compl... 2
22:44, 15 May 2016 Complexarctanplot.png (file) 93 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(atan,[-2,2],[-2,2],points=500000,verbose=True) plt.title('Domain coloring of $\mathrm{arctan}(z)$.') plt.savefig('complexa... 1
21:41, 15 May 2016 Complexarccosplot.png (file) 66 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(acos,[-10,10],[-10,10],points=500000,verbose=True) plt.title('Domain coloring of $\mathrm{arccos}(z)$.') plt.savefig('comp... 1
21:31, 15 May 2016 Complexarcsinplot.png (file) 72 KB Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(asin,[-10,10],[-10,10],points=500000,verbose=True) plt.title('Domain coloring of $\mathrm{arcsin}(z)$.') plt.savefig('comp... 1
20:05, 15 May 2016 Complexarccothglyph.png (file) 19 KB Category:Arccothglyph <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: acoth(x),[-4,4],[-4,4],points=400000,verbose=Tru... 1
19:58, 15 May 2016 Complexarcsechglyph.png (file) 12 KB Category:Arcsechglyph <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: asech(x),[-4,4],[-4,4],points=400000,verbose=Tru... 1
19:57, 15 May 2016 Complexarccschglyph.png (file) 19 KB Category:Arccschglyph <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: acsch(x),[-4,4],[-4,4],points=400000,verbose=Tru... 1
19:56, 15 May 2016 Complexarctanhglyph.png (file) 14 KB Category:Arctanhglyph <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: atanh(x),[-4,4],[-4,4],points=400000,verbose=Tru... 1
19:56, 15 May 2016 Complexarccoshglyph.png (file) 14 KB Category:Arccoshglyph <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: acosh(x),[-4,4],[-4,4],points=400000,verbose=Tru... 1
19:14, 15 May 2016 Complexarcsinhglyph.png (file) 17 KB Category:Arcsinhglyph <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: asinh(x),[-4,4],[-4,4],points=400000,verbose=Tru... 1
18:45, 15 May 2016 Arccothglyph.png (file) 4 KB Category:Arccothglyph <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(-4.5,-1.001,0.0001) x2=np.arange(1.001,4.5,0.0001) f=... 1
18:45, 15 May 2016 Arcsechglyph.png (file) 4 KB Category:Arcsechglyph <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.001,0.99,0.001) f=np.vectorize(asech) y=f(x) fig, a... 1
18:44, 15 May 2016 Arccschglyph.png (file) 5 KB Category:Arccschglyph <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.03) f=np.vectorize(acsch) y=f(x) fig, ax = plt... 1
18:43, 15 May 2016 Arctanhglyph.png (file) 4 KB Category:Arctanhglyph <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.99,0.99,0.001) f=np.vectorize(atanh) y=f(x) fig, a... 1
18:43, 15 May 2016 Arccoshglyph.png (file) 4 KB Category:Arccoshglyph <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,4,0.001) f=np.vectorize(acosh) y=f(x) fig, ax = plt... 1
18:41, 15 May 2016 Arcsinhglyph.png (file) 5 KB Category:Arcsinhglyph <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(-6,6,0.001) f=np.vectorize(asinh) y=f(x) fig, ax = pl... 1
01:25, 15 May 2016 Cothglyph.png (file) 4 KB Category:Cothglyph <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.000013) f=np.vectorize(coth) y=f(x) fig, ax = plt... 1
20:38, 14 May 2016 Sechglyph.png (file) 6 KB Category:Sechglyph <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(-4,4,0.00001) f=np.vectorize(sech) y=f(x) fig, ax = plt.... 1
20:37, 14 May 2016 Cschglyph.png (file) 4 KB Category:Cschglyph <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.000013) f=np.vectorize(csch) y=f(x) fig, ax = plt... 1
20:36, 14 May 2016 Tanhglyph.png (file) 4 KB Category:Tanhglyph <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(tanh) y=f(x) fig, ax = plt.... 1
20:35, 14 May 2016 Coshglyph.png (file) 5 KB Category:Coshglyph <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(cosh) y=f(x) fig, ax = plt.... 1
20:34, 14 May 2016 Complexcothglyph.png (file) 18 KB Category:Cothglyph <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: coth(x),[-4,4],[-4,4],points=400000,verbose=True) p... 1
20:34, 14 May 2016 Complexsechglyph.png (file) 18 KB Category:Sechglyph <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: sech(x),[-4,4],[-4,4],points=400000,verbose=True)... 1
20:33, 14 May 2016 Complexcschglyph.png (file) 19 KB Category:Cschglyph <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: csch(x),[-4,4],[-4,4],points=400000,verbose=True)... 1
20:32, 14 May 2016 Complextanhglyph.png (file) 148 KB Category:Tanhglyph <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: tanh(x),[-4,4],[-4,4],points=400000,verbose=True)... 1
20:31, 14 May 2016 Complexcoshglyph.png (file) 148 KB Category:Coshglyph <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: cosh(x),[-4,4],[-4,4],points=400000,verbose=True)... 1
20:28, 14 May 2016 Complexsinhglyph.png (file) 148 KB Category:Sinhglyph <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: sinh(x),[-4,4],[-4,4],points=400000,verbose=True)... 1
20:27, 14 May 2016 Sinhglyph.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(-3,3,0.00001) f=np.vectorize(sinh) y=f(x) fig, ax = plt.subplots() #plt.ylim([... 1
22:09, 13 May 2016 Airysectors.png (file) 11 KB <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) -... 1
First page
Last page