Matplotlib Contourf-输入z必须至少为2x2数组?

时间:2019-06-23 18:00:34

标签: python matplotlib contourf

我正在使用contourf绘制3个点。 x值为(.5,1.25,1.75),y值为(1,1,1)。

与此同时,我还有3个z点。所以,我做了:

xlist = [[.5],        [1.25],      [1.75]       ]  
ylist = [[1],         [1],         [1]          ] 
zlist = [[11.09856186][10.82105586][ 9.73936149]]

但是,当我运行它时,出现错误:

  

zlist必须至少为2x2数组。

这是否意味着我必须绘制至少4个点?

0 个答案:

没有答案