2020
09-27
09-27
ipython jupyter notebook中显示图像和数学公式实例
1.#可以使用LaTeX表示数学公式#可以使用LaTeX表示数学公式fromIPython.displayimportLatexLatex(r"$\sqrt{x^2+y^2}$")2.#SymPy的表达式也可以显示为LaTex%load_extsympyprintingfromsympyimport*x,y=symbols("x,y")sqrt(x**2+y**2)3.#用Image类显示”jupyter.png”图片,缺省路径为Notebook文件所在的目录fromIPython.displayimportImageImage(filename="jupyter.png")4.使用matplotlib绘图%matplotlibinlin...
继续阅读 >