Revision history of "File:Binomialcoefficient,n=20plot.png"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 18:37, 25 September 2016Tom (talk | contribs). . (632 bytes) (+632). . (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(-5,26,1); f=np.vectorize(lambda x: binomial(20,x)) y=f(x) g=np....)