在matlab中改变meshc图的外观

时间:2016-02-14 15:36:36

标签: matlab colors mesh contour

我有一些代码可以创建一个随机的风景和轮廓,但我无法找到控制颜色,阴影,轮廓线颜色,等高线数等。我认为谷歌搜索有帮助。这是代码:

function create_landscape()

Lx=1;
dx=0.01;
x=0:dx:Lx;
nx=length(x);
Ly=5;
dy=0.01;
y=0:dy:Ly;
ny=length(y);

[mgx,mgy]=meshgrid(x,y);
landscape=zeros(ny ,nx);
nhills=100;
maxh=1;
maxw=0.03;
maxl=maxw*Ly/Lx;
xbuf=0.1;
ybuf=0.1;
pd=makedist('Normal','mu',0,'sigma',1e-5*exp(-1));

for i=1:nhills
    center=[xbuf+(Lx-2*xbuf)*rand,ybuf+(Ly-2*ybuf)*rand];
    w=rand*maxw;
    l=rand*maxl;
    sign=(-1)^(ceil(2*rand));
    h=random(pd)*maxh/1e-5;
    landscape=landscape+hill(mgx,mgy,sign*h,center,w,l);
end

m=meshc(mgx,mgy,landscape);
axis([-0.2 Lx+0.2 -0.2 Ly+0.2 -maxh*1.5 maxh*3])
grid off
xlabel('x')
ylabel('y')
hold off;

end

function fx=hill(x,y,h,center,w,l)
fx=h*exp(-(x-center(1)).*(x-center(1))/w^2).*exp(-(y-center(2)).*(y-center(2))/l^2);
end

我知道如何改变它的外观吗?

1 个答案:

答案 0 :(得分:1)

您可以使用功能colormap

更改颜色

如果你想要一个普通的表面,你可以使用surfc(...,...,...,'EdgeColor','none')函数代替使用网格函数。

如果您想要创建包含更多行的横向广告,则必须更改参数dxdy

colormap('pink')会给你以下结果(你也可以定义你自己的颜色图),左边是函数surfc,右边是函数meshc。

enter image description here