Created
January 2, 2021 22:30
-
-
Save SrMouraSilva/1a4d7dceb6b815ef60501cd6cae74df9 to your computer and use it in GitHub Desktop.
Plot latex
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
import sympy as sp | |
Math(sp.latex(f""" | |
\\begin{{aligned}} | |
p(\\boldsymbol{{w}}|\mathcal{{D}}) &= \mathcal{{N}}(\\boldsymbol{{w}}|\\boldsymbol{{\mu}}, \\boldsymbol{{\Sigma}}), \\\\ | |
\\boldsymbol{{\mu}} &= {sp.latex(sp.Matrix(modelo_1.μ))}, \\\\ | |
\\boldsymbol{{\Sigma}} &= {sp.latex(sp.Matrix(modelo_1.Σ))}. | |
\\end{{aligned}} | |
""")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment