Hello
I have gridded data of the shape:
x_1 y_1 z_1
x_1 y_2 z_2
. . .
x_1 y_N z_N
x_2 y_1 z_(N+1)
x_2 y_2 z_(N+2)
. . .
x_2 y_N z_(2N)
x_M y_1 z_(MN)
x_M y_2 z_(MN)
. . .
x_M y_N z_(MN)
I've tried to follow the contour_demo script by making
x = arange(M numbers)
y = arange(N numbers)
X,Y = meshgrid(x,y)
M = load('zdata.dat')
Z = reshape(M, (M,N))
figure()
CS = contour(X,Y,Z)
But I get errors that x and y are not 1D or 2D... Can someone help me
to do this right?
thanks, Peter
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Matplotlib-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-users