Advertisement
Guest User

new

a guest
Jul 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. import numpy as np
  2. from matplotlib import pyplot as plt
  3.  
  4. x = np.linspace(0,2,50)
  5. y = np.sin(x)
  6.  
  7. plt.plot(x,y)
  8. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement