I have data in X, Y, Z format where all are 1D arrays, and Z is the amplitude of the measurement at coordinate (X,Y). I'd like to show this data as a contour or 'imshow' plot where the contours/color represent the the value Z (amplitude).
The grid for measurements and X and Y look are irregularly spaced.
Many thanks,
len(X)=100
len(Y)=100
len(Z)=100
Doesn't matter if they are irregularly spaced, contour and 3d plots require a meshgrid.