Jupyter Notebook中显示图像和数学公式
程序员文章站
2022-03-03 13:51:06
...
1. 可以使用LaTeX表示数学公式
# 可以使用LaTeX表示数学公式
from IPython.display import Latex
Latex(r"$\sqrt{x^2+y^2}$")
2. SymPy的表达式也可以显示为LaTex
%load_ext sympyprinting
from sympy import *
x, y = symbols("x,y")
sqrt(x**2+y**2)
3. 用Image类显示”jupyter.png”图片,缺省路径为Notebook文件所在的目录
from IPython.display import Image
Image(filename="jupyter.png")
4. 使用matplotlib绘图
%matplotlib inline
plot(random.randn(100));
5. %prun用于代码的执行性能分析,可以作为行命令和单元命令使用
%%prun
for i in range(100):
np.linalg.det(random.rand(10,10))
参考:
https://blog.csdn.net/halazi100/article/details/79704631
上一篇: AOS V0.5 发布,JavaEE 应用基础平台
下一篇: webpack打包html中图片不显示
推荐阅读
-
jupyter notebook中图片显示不出来的解决
-
解决jupyter notebook图片显示模糊和保存清晰图片的操作
-
jupyter notebook图片缩小以及数学公式显示
-
Jupyter Notebook - 正常显示中文和负号
-
Jupyter notebook中如何显示pyplot图表
-
在jupyter notebook中同时安装python2和python3
-
jupyter notebook中图片显示不出来的解决
-
python中利用opencv、matplotlib读取和显示图像
-
在jupyter notebook中同时安装python2和python3
-
在Jupyter Notebook 中显示动画