plt3_simple_plot.py 461 B

12345678910111213141516171819
  1. # View more python tutorials on my Youtube and Youku channel!!!
  2. # Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
  3. # Youku video tutorial: http://i.youku.com/pythontutorial
  4. # 3 - simple plot
  5. """
  6. Please note, this script is for python3+.
  7. If you are using python2+, please modify it accordingly.
  8. """
  9. import matplotlib.pyplot as plt
  10. import numpy as np
  11. x = np.linspace(-1, 1, 50)
  12. y = 2*x + 1
  13. # y = x**2
  14. plt.plot(x, y)
  15. plt.show()