Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from sympy import init_printing # Latex printing to screen
- import matplotlib.pyplot as plt # Plotting library
- from warnings import filterwarnings # Ignoring ugly pink warnings
- init_printing(use_latex = 'mathjax')
- filterwarnings('ignore')
- %matplotlib inline
- from numpy import *
- from sympy import symbols, Function, dsolve, Eq, Derivative, sin, cos, exp, classify_ode
- t = symbols("t")
- y = Function("y")
Advertisement
Add Comment
Please, Sign In to add comment