Last active
January 5, 2016 17:39
-
-
Save Stefan-Code/fd50a2b2782ca5d4c964 to your computer and use it in GitHub Desktop.
Sympy symbolic math boilerplate for iPython notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sympy import * | |
from sympy.matrices import * | |
import seaborn as sns # seaborn for pretty graphs | |
import numpy as np # numpy for numerical stuff | |
init_session() | |
init_printing(use_latex='mathjax') | |
# now you're good to go. | |
#Example: | |
diff(2**x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment