I am using contourf
to plot 3 points. The x values are (.5, 1.25, 1.75) and the y values are (1,1,1).
I have my 3 z points to go along with this. So, I made:
xlist = [[.5], [1.25], [1.75] ]
ylist = [[1], [1], [1] ]
zlist = [[11.09856186][10.82105586][ 9.73936149]]
However, when I run this, I get the error:
zlist must be at least a 2x2 array.
Does this mean I must graph at least 4 points?