笔记 单击此处 下载完整的示例代码 垫秀# matshow将 2D 矩阵或数组可视化为颜色编码的图像。 import matplotlib.pyplot as plt import numpy as np # a 2D array with linearly increasing values on the diagonal a = np.diag(range(15)) plt.matshow(a) plt.show() 参考 此示例中显示了以下函数、方法、类和模块的使用: matplotlib.axes.Axes.imshow/matplotlib.pyplot.imshow 由 Sphinx-Gallery 生成的画廊