- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
matlab经典算法的程序
matlab经典算法的程序——绘图 时间:2010-03-19 18:56:25??作者:Admin??点击:239
程序代码:
clearclcsubplot(1,2,1);t = 0:0.01:2*pi;x = cos(2*t).*(cos(t).^2);y = sin(2*t).*(sin(t).^2);comet(x,y)subplot(1,2,2);t = -10*pi:pi/250:10*pi;comet3((cos(2*t).^2).*sin(t),(sin(2*t).^2).*cos(t),t)
clearclcsubplot(2,2,1)contour3(peaks,50); %画出曲面在三度空间中的等高线axis([-inf inf -inf inf -inf inf]); subplot(2,2,2)contour(peaks, 50); %画出曲面等高线在XY平面的投影subplot(2,2,3)t=linspace(0,20*pi, 501); plot3(t.*sin(t), t.*cos(t), t);% 画出三度空间中的曲线subplot(2,2,4)plot3(t.*sin(t), t.*cos(t), t, t.*sin(t), t.*cos(t), -t);% 同时画出两条三度空间中的曲线
clearclct=(0:0.02:2)*pi;x=sin(t);y=cos(t);z=cos(2*t);plot3(x,y,z,b-,x,y,z,bd)view([-82,58]);box onlegend(链,宝石);
clearclcsubplot(3,3,1)ezplot(cos(x))subplot(3,3,2)ezplot(cos(x), [0, pi])subplot(3,3,3)ezplot(1/y-log(y)+log(-1+y)+x - 1)subplot(3,3,4)ezplot(x^2 - y^2 - 1)subplot(3,3,5)ezplot(x^2 + y^2 - 1,[-1.25,1.25]); axis equalsubplot(3,3,6)ezplot(x^3 + y^3 - 5*x*y + 1/5,[-3,3])subplot(3,3,7)ezplot(x^3 + 2*x^2 - 3*x + 5 - y^2)subplot(3,3,8)ezplot(sin(t),cos(t))subplot(3,3,9)ezplot(sin(3*t)*cos(t),sin(3*t)*sin(t),[0,pi])
clearclcsubplot(2,2,1), fplot(humps,[0 1])subplot(2,2,2), fplot(abs(exp(-j*x*(0:9))*ones(10,1)),[0 2*pi])subplot(2,2,3), fplot([tan(x),sin(x),cos(x)],2*pi*[-1 1 -1 1])subplot(2,2,4), fplot(sin(1 ./ x), [0.01 0.1],1e-3)
clearclc[X0,Y0,Z0]=sphere(30);?????? %产生单位球面的三维坐标X=2*X0;Y=2*Y0;Z=2*Z0;??????? %产生半径为2的球面的三维坐标clfsubplot(1,2,1);surf(X0,Y0,Z0);????????? %画单位球面shading interp?????????????? %采用插补明暗处理hold on,mesh(X,Y,Z),colormap(hot),hold off?????? %采用hot色图hidden off??????????????????? %产生透视效果axis equal,axis off????????? %不显示坐标轴title(透视图)subplot(1,2,2);surf(X0,Y0,Z0);????????? %画单位球面shading interp?????????????? %采用插补明暗处理hold on,mesh(X,Y,Z),colormap(hot),hold off?????? %采用hot色图hidden on??????????????????? %产生消隐效果axis equal,axis off????????? %不显示坐标轴title(消隐图)
clearclc[x,y,z] =peaks; subplot(2,3,1);meshz(x,y,z); %曲面
文档评论(0)