用matlab画二元函数 z=sin(x)cos(y) 的曲面图及其等高线图,程序怎么写,用最基础的语句!求帮助 10
1个回答
展开全部
x=linspace(-5,5,50);
y=linspace(-5,5,50);
[x,y]=meshgrid(x,y);
z=sin(x).*sin(y);
figure(1)
meshc(x,y,z);
figure(2)
[C, h] = contourf(z);
clabel(C, h, 'LabelSpacing', 72);
colorbar;
tm1 = colormap(hot(9));
tm1(1, :) = [1 1 1];
colormap(tm1);
y=linspace(-5,5,50);
[x,y]=meshgrid(x,y);
z=sin(x).*sin(y);
figure(1)
meshc(x,y,z);
figure(2)
[C, h] = contourf(z);
clabel(C, h, 'LabelSpacing', 72);
colorbar;
tm1 = colormap(hot(9));
tm1(1, :) = [1 1 1];
colormap(tm1);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询