二维斜率显示Python

问题描述 投票:0回答:1

问题如下。我必须建立一个矩阵,它的值对应于34度和28度之间的斜率角。我需要创建矩阵并将其显示在图中。

python arrays matrix 2d visualize
1个回答
0
投票

不知道如何创建你的矩阵。通常,你必须计算它或从某处加载数据,但绘图会像这样。

import matplotlib.pyplot as plt

N = 11
# increase if you like your matrix to be larger, i.e. you like to have a finer mesh
x = np.linspace(0,1,N)
xx, yy = np.meshgrid(x,x)
your_matrix = 34*xx*yy
plt.matshow(your_matrix)
plt.show()
© www.soinside.com 2019 - 2024. All rights reserved.