File:Loghyperfactorialplot.png

From specialfunctionswiki
Jump to: navigation, search
Original file(868 × 876 pixels, file size: 15 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(0,10,1);
f=np.vectorize(lambda x: log(hyperfac(x)))
y=f(x)

fig, ax = plt.subplots()

plt.xlabel(r'$n$')
plt.ylabel(r'$\log(H(n))$')

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

plt.savefig('loghyperfactorialplot.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
current19:21, 25 September 2016Thumbnail for version as of 19:21, 25 September 2016868 × 876 (15 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(0,10,1); f=np.vectorize(lambda x: log(hyperfac(x))) y=f(x) fi...
  • You cannot overwrite this file.

The following page links to this file:

Metadata