浙三爷 百科:matlab实用程序(1)枝干图罗盘图轮廓图

来源:百度文库 编辑:偶看新闻 时间:2024/03/28 18:37:46
 matlab实用程序百例       实例11:枝干图              function shili11              h0=figure('toolbar','none',...                  'position',[200 150 450 350],...                  'name','实例11');              x=0:pi/20:2*pi;              y1=sin(x);              y2=cos(x);              h1=stem(x,y1+y2);              hold on              h2=plot(x,y1,'^r',x,y2,'*g');              hold off              h3=[h1(1);h2];              legend(h3,'y1+y2','y1=sin(x)','y2=cos(x)')              xlabel('自变量X');              ylabel('函数值Y');              title('正弦函数与余弦函数的线性组合');




               
              实例12:罗盘图              function shili12              h0=figure('toolbar','none',...                  'position',[200 150 450 250],...                  'name','实例12');              winddirection=[54 24 65 84                   256 12 235 62                   125 324 34 254];              windpower=[2 5 5 3                   6 8 12 7                   6 14 10 8];              rdirection=winddirection*pi/180;              [x,y]=pol2cart(rdirection,windpower);              compass(x,y);              desc={'风向和风力',                  '北京气象台',                  '10月1日0:00到',                  '10月1日12:00'};              gtext(desc)



               
              实例13:轮廓图              function shili13              h0=figure('toolbar','none',...                  'position',[200 150 450 250],...                  'name','实例13');              [th,r]=meshgrid((0:10:360)*pi/180,0:0.05:1);              [x,y]=pol2cart(th,r);              z=x+i*y;              f=(z.^4-1).^(0.25);              contour(x,y,abs(f),20)              axis equal              xlabel('实部','fontsize',16);              ylabel('虚部','fontsize',16);              h=polar([0 2*pi],[0 1]);              delete(h)              hold on              contour(x,y,abs(f),20)