Guest User

Untitled

a guest
May 13th, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1.  
  2. from sympy import init_printing # Latex printing to screen
  3. import matplotlib.pyplot as plt # Plotting library
  4. from warnings import filterwarnings # Ignoring ugly pink warnings
  5.  
  6. init_printing(use_latex = 'mathjax')
  7. filterwarnings('ignore')
  8.  
  9. %matplotlib inline
  10.  
  11. from numpy import *
  12. from sympy import symbols, Function, dsolve, Eq, Derivative, sin, cos, exp, classify_ode
  13.  
  14. t = symbols("t")
  15. y = Function("y")
Advertisement
Add Comment
Please, Sign In to add comment