Advertisement
mfgnik

Untitled

Mar 28th, 2020
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. x = np.arange(1, 51)
  2. l = [100, 500, 1000]
  3. plt.figure(figsize=(18, 8))
  4. for i in range(3):
  5.     plt.plot(x, func1(x, l[i]), label='{} points'.format(l[i]))
  6. plt.grid(True)
  7. plt.legend(prop={'size': 18})
  8. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement