代码搜索:实例教学

找到约 10,000 项符合「实例教学」的源代码

代码结果 10,000
www.eeworm.com/read/426350/10257447

m 实例03.m

function shili03 h0=figure('toolbar','none',... 'position',[200 150 450 350],... 'name','实例03'); x=-pi:0.05:pi; y1=sin(x); y2=cos(x); plot(x,y1,... '-*r',... x,y2,... '--
www.eeworm.com/read/426350/10257448

m 实例76.m

h0=figure('toolbar','none',... 'position',[198 56 500 500],... 'name','实例76'); h1=axes('parent',h0,... 'position',[0.15 0.5 0.7 0.5],... 'visible','off'); u1=uimenu('parent',h0,.
www.eeworm.com/read/426350/10257449

m 实例27.m

function shili27 h0=figure('toolbar','none',... 'position',[200 150 450 350],... 'name','实例27'); subplot(2,2,1) sphere shading flat camlight left camlight right lighting flat colorba
www.eeworm.com/read/426350/10257450

m 实例56.m

h0=figure('toolbar','none',... 'position',[198 56 450 468],... 'name','实例56'); h1=axes('parent',h0,... 'position',[0.3 0.45 0.5 0.5],... 'visible','off'); l1=uimenu(gcf,'label','
www.eeworm.com/read/426350/10257451

m 实例58.m

h0=figure('toolbar','none',... 'position',[198 56 350 468],... 'name','实例58'); h1=axes('parent',h0,... 'position',[0.25 0.45 0.5 0.5],... 'visible','off'); t=0:0.1:4*pi; x=sin(t
www.eeworm.com/read/426350/10257452

m 实例82.m

h0=figure('toolbar','none',... 'position',[198 56 350 468],... 'name','实例82'); h1=axes('parent',h0,... 'position',[0.2 0.45 0.5 0.5],... 'visible','off'); load earth clims = [10
www.eeworm.com/read/426350/10257453

m 实例30.m

function shili30 h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例30'); [x,y,z]=meshgrid(-2:0.1:2,... -2:0.1:2,... -2:0.1:2); v=x.*exp(-x.^2-y.^2-z.^2);
www.eeworm.com/read/426350/10257454

m 实例24.m

function shili24 h0=figure('toolbar','none',... 'position',[200 150 450 350],... 'name','实例24'); subplot(2,2,1) z=peaks; ribbon(z) title('Figure1') subplot(2,2,2) [x,y,z]=peaks(15);
www.eeworm.com/read/426350/10257455

m 实例39.m

h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例39'); x=0:0.5:2*pi; y=cos(x); h=plot(x,y); grid on set(gcf,'toolbar','none') hm=uimenu('label','example'); hu
www.eeworm.com/read/426350/10257456

m 实例11.m

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