如何在MATLAB中绘制2D元素网格轮廓?

时间:2019-03-03 11:07:52

标签: matlab matlab-figure contourf

我正在尝试为二维有限元三角形网格中地下水扩散的某些解决方案绘制输出轮廓。

这是我使用的代码:

%% 3d Surface plot of Ground water Head
tri= delaunay(x,y);
trisurf(tri,x,y,h);

title('Head Distribution');
xlabel('Distance along the X axis(m)');
ylabel('Distance along the Y axis(m)');
zlabel('Head(m)');
colorbar eastoutside;

这是行不通的图:

figure(2)
[c,hh] = contourf(tri,x,y,h,18); 
clabel(c,hh)
title('Tricontour') 

plot for figure one

0 个答案:

没有答案