jupyter notebook 矩阵显示
时间: 2023-10-06 13:12:17 浏览: 302
jupyter notebook中美观显示矩阵实例
jupyter notebook可以使用IPython.display库中的display函数来显示矩阵。通过设置display函数的formatter参数为'latex',可以将矩阵以LaTeX格式显示在notebook中。具体代码如下:
from IPython.display import display, Latex
import numpy as np
matrix = np.array([[1, 2], [3, 4]]) # 假设这是你的矩阵
display(Latex(matrix_to_latex(matrix)))
相关问题:
1. 如何在jupyter notebook中显示向量?
2. 如何在jupyter notebook中显示数学
阅读全文