File:Elliptickplot.png

From specialfunctionswiki
Jump to: navigation, search
Original file(875 × 885 pixels, file size: 25 KB, MIME type: image/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(-1,1,0.001);
f=np.vectorize(ellipk)
y=f(x)

fig, ax = plt.subplots()

plt.xlabel(r'$x$')
plt.ylabel(r'$K(x)$')

plt.plot(x,y,linewidth=2,color='Black')

plt.savefig('elliptickplot.png',bbox_inches='tight',pad_inches=0.15)

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current16:42, 25 May 2016Thumbnail for version as of 16:42, 25 May 2016875 × 885 (25 KB)Tom (talk | contribs)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.001); f=np.vectorize(ellipk) y=f(x) fig, ax = plt.subpl...
  • You cannot overwrite this file.

The following page links to this file:

Metadata