Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图为等高线图生成 Z 值
x = np.linspace(s_T,e_T,num=graph_density) y = np.linspace(s_P,e_P,num=graph_density) x,y = np.meshgrid(x,y)
我已经生成了一个 x,y 网格来组成我的绘图的 x 和 y 值。但现在我需要采用这个网格并解决 Z 值的配对并将其放入矩阵中。我可以想到几种使用 M 和 N“for 循环”的蛮力方法来做到这一点,但我想知道是否有更有效的方法来做到这一点?