Guest User

Untitled

a guest
Oct 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. from sympy import *
  2. x=Symbol('x')
  3. p1 = plot(x**2,(x,-2,2))
  4. p2 = plot(x**3,(x,-2,2))
  5.  
  6. import matplotlib.pyplot as plt
  7. fig = plt.figure()
  8. ax1 = fig.add_subplot(121)
  9. ax2 = fig.add_subplot(122)
  10. plt.show()
Add Comment
Please, Sign In to add comment