One approach:
figure
stem3(X, Y, Value)
grid on
[Xm,Ym] = ndgrid(X,Y);
Vm = griddata(X, Y, Value, Xm, Ym);
figure
contour3(Xm, Ym, Vm)
grid on
I used contour3 here to demonstrate the problems. Experiment with surfc and contour.
Your data do not easily lend themselves to a contour plot. You will need to work with your data a bit to get a better representation.
0 件のコメント
サインインしてコメントする。