Guest User

Untitled

a guest
May 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3.  
  4. x = np.arange(0, 5, 0.1);
  5. y = np.sin(x)
  6. plt.plot(x, y)
Add Comment
Please, Sign In to add comment