版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、 程序代碼: (代碼標(biāo)記 code./code )1-32是:圖形應(yīng)用篇 33-66是:界面設(shè)計(jì)篇67-84是:圖形處理篇85-100是:數(shù)值分析篇實(shí)例1:三角函數(shù)曲線(1)function shili01h0=figure('toolbar','none',. 'position',198 56 350 300,. 'name','實(shí)例01');h1=axes('parent',h0,.
2、9;visible','off');x=-pi:0.05:pi;y=sin(x);plot(x,y);xlabel('自變量X');ylabel('函數(shù)值Y');title('SIN( )函數(shù)曲線');grid on實(shí)例2:三角函數(shù)曲線(2)function shili02h0=figure('toolbar','none',. 'position',200 150 450 350,. 'name','實(shí)
3、例02');x=-pi:0.05:pi;y=sin(x)+cos(x);plot(x,y,'-*r','linewidth',1);grid onxlabel('自變量X');ylabel('函數(shù)值Y');title('三角函數(shù)');實(shí)例3:圖形的疊加function shili03h0=figure('toolbar','none',. 'position',200 150 450 350,. 'nam
4、e','實(shí)例03');x=-pi:0.05:pi;y1=sin(x);y2=cos(x);plot(x,y1,. '-*r',. x,y2,. '-og');grid onxlabel('自變量X');ylabel('函數(shù)值Y');title('三角函數(shù)');實(shí)例4:雙y軸圖形的繪制function shili04h0=figure('toolbar','none',.
5、60;'position',200 150 450 250,. 'name','實(shí)例04');x=0:900;a=1000;b=0.005;y1=2*x;y2=cos(b*x);haxes,hline1,hline2=plotyy(x,y1,x,y2,'semilogy','plot');axes(haxes(1)ylabel('semilog plot');axes(haxes(2)ylabel('linear plot');實(shí)例5:?jiǎn)蝹€(gè)軸窗口顯示多個(gè)圖形f
6、unction shili05h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例05');t=0:pi/10:2*pi;x,y=meshgrid(t);subplot(2,2,1)plot(sin(t),cos(t)axis equalsubplot(2,2,2)z=sin(x)-cos(y);plot(t,z)axis(0 2*pi -2 2)subplot(2,2,3)h=sin
7、(x)+cos(y);plot(t,h)axis(0 2*pi -2 2)subplot(2,2,4)g=(sin(x).2)-(cos(y).2);plot(t,g)axis(0 2*pi -1 1)實(shí)例6:圖形標(biāo)注function shili06h0=figure('toolbar','none',. 'position',200 150 450 400,. 'name','實(shí)例06');t=0:pi/10:2*pi;h=plot(t,sin(t);xlabel(
8、't=0到2pi','fontsize',16);ylabel('sin(t)','fontsize',16);title('it從 0to2pi 的正弦曲線','fontsize',16)x=get(h,'xdata');y=get(h,'ydata');imin=find(min(y)=y);imax=find(max(y)=y);text(x(imin),y(imin),. 'leftarrow最小值=',num2str(
9、y(imin),. 'fontsize',16)text(x(imax),y(imax),. 'leftarrow最大值=',num2str(y(imax),. 'fontsize',16) 實(shí)例7:條形圖形function shili07h0=figure('toolbar','none',. 'position',200 150 450 350,.
10、39;name','實(shí)例07');tiao1=562 548 224 545 41 445 745 512;tiao2=47 48 57 58 54 52 65 48;t=0:7;bar(t,tiao1)xlabel('X軸');ylabel('TIAO1值');h1=gca;h2=axes('position',get(h1,'position');plot(t,tiao2,'linewidth',3)set(h2,'yaxislocation','right
11、9;,'color','none','xticklabel',)實(shí)例8:區(qū)域圖形function shili08h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例08');x=91:95;profits1=88 75 84 93 77;profits2=51 64 54 56 68;profits3=42 54 34 25 24;pro
12、fits4=26 38 18 15 4;area(x,profits1,'facecolor',0.5 0.9 0.6,. 'edgecolor','b',. 'linewidth',3)hold onarea(x,profits2,'facecolor',0.9 0.85 0.7,. 'edgecolor','y',. 'linewidth',3)hold onarea(
13、x,profits3,'facecolor',0.3 0.6 0.7,. 'edgecolor','r',. 'linewidth',3)hold onarea(x,profits4,'facecolor',0.6 0.5 0.9,. 'edgecolor','m',. 'linewidth',3)hold offset(gca,'xtick',91:95)
14、set(gca,'layer','top')gtext('leftarrow第一季度銷量')gtext('leftarrow第二季度銷量')gtext('leftarrow第三季度銷量')gtext('leftarrow第四季度銷量')xlabel('年','fontsize',16);ylabel('銷售量','fontsize',16); 實(shí)例9:餅圖的繪制function shili09h0=figure('toolbar
15、','none',. 'position',200 150 450 250,. 'name','實(shí)例09');t=54 21 35; 68 54 35; 45 25 12; 48 68 45; 68 54 69;x=sum(t);h=pie(x);textobjs=findobj(h,'type','text');str1=get(textobjs,
16、'string');val1=get(textobjs,'extent');oldext=cat(1,val1:);names='商品一:''商品二:''商品三:'str2=strcat(names,str1);set(textobjs,'string',str2)val2=get(textobjs,'extent');newext=cat(1,val2:);offset=sign(oldext(:,1).*(newext(:,3)-oldext(:,3)/2;pos=get(tex
17、tobjs,'position');textpos=cat(1,pos:);textpos(:,1)=textpos(:,1)+offset;set(textobjs,'position',num2cell(textpos,3,2)實(shí)例10:階梯圖function shili10h0=figure('toolbar','none',. 'position',200 150 450 400,. 'name','實(shí)例10');a=0.01;
18、b=0.5;t=0:10;f=exp(-a*t).*sin(b*t);stairs(t,f)hold onplot(t,f,':*')hold offglabel='函數(shù)e-(alpha*t)sinbeta*t的階梯圖'gtext(glabel,'fontsize',16)xlabel('t=0:10','fontsize',16)axis(0 10 -1.2 1.2)實(shí)例11:枝干圖function shili11h0=figure('toolbar','none',.
19、 'position',200 150 450 350,. 'name','實(shí)例11');x=0:pi/20:2*pi;y1=sin(x);y2=cos(x);h1=stem(x,y1+y2);hold onh2=plot(x,y1,'r',x,y2,'*g');hold offh3=h1(1);h2;legend(h3,'y1+y2','y1=sin(x)','y2=cos(x)')xlabel('自變量X');y
20、label('函數(shù)值Y');title('正弦函數(shù)與余弦函數(shù)的線性組合');實(shí)例12:羅盤圖function shili12h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例12');winddirection=54 24 65 84 256 12 235 62 125 324 34 254;wind
21、power=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='風(fēng)向和風(fēng)力', '北京氣象臺(tái)', '10月1日0:00到', '10月1日12:00'gtext(desc)實(shí)例13:輪廓圖function shili13h0=figure
22、('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例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 equalxlabel('實(shí)部','fontsize',16);ylabel('
23、虛部','fontsize',16);h=polar(0 2*pi,0 1);delete(h)hold oncontour(x,y,abs(f),20)實(shí)例14:交互式圖形function shili14h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例14');axis(0 10 0 10);hold onx=;y=;n=0;disp('單擊鼠標(biāo)左
24、鍵點(diǎn)取需要的點(diǎn)');disp('單擊鼠標(biāo)右鍵點(diǎn)取最后一個(gè)點(diǎn)');but=1;while but=1 xi,yi,but=ginput(1); plot(xi,yi,'bo') n=n+1; disp('單擊鼠標(biāo)左鍵點(diǎn)取下一個(gè)點(diǎn)'); x(n,1)=xi; y(n,1)=yi;endt=1:n;ts=1:0.1:n;xs=spline(t,x,ts);ys=spline(t,y,ts);plot(x
25、s,ys,'r-');hold off實(shí)例15:變換的傅立葉函數(shù)曲線function shili15h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例15');axis equalm=moviein(20,gcf);set(gca,'nextplot','replacechildren')h=uicontrol('style
26、39;,'slider','position',. 100 10 500 20,'min',1,'max',20)for j=1:20 plot(fft(eye(j+16) set(h,'value',j) m(:,j)=getframe(gcf);endclf;axes('position',0 0 1 1);movie(m,30)實(shí)例16:勞倫茲非線形方程的無序活動(dòng)function shili15h0
27、=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例15');axis equalm=moviein(20,gcf);set(gca,'nextplot','replacechildren')h=uicontrol('style','slider','position',. 100 10
28、 500 20,'min',1,'max',20)for j=1:20 plot(fft(eye(j+16) set(h,'value',j) m(:,j)=getframe(gcf);endclf;axes('position',0 0 1 1);movie(m,30)實(shí)例17:填充圖function shili17h0=figure('toolbar','none',. 'position
29、39;,200 150 450 250,. 'name','實(shí)例17');t=(1:2:15)*pi/8;x=sin(t);y=cos(t);fill(x,y,'r')axis square offtext(0,0,'STOP',. 'color',1 1 1,. 'fontsize',50,. 'horizontalalignment','center')實(shí)例18:條形圖
30、和階梯形圖function shili18h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例18');subplot(2,2,1)x=-3:0.2:3;y=exp(-x.*x);bar(x,y)title('2-D Bar Chart')subplot(2,2,2)x=-3:0.2:3;y=exp(-x.*x);bar3(x,y,'r')title(&
31、#39;3-D Bar Chart')subplot(2,2,3)x=-3:0.2:3;y=exp(-x.*x);stairs(x,y)title('Stair Chart')subplot(2,2,4)x=-3:0.2:3;y=exp(-x.*x);barh(x,y)title('Horizontal Bar Chart') 實(shí)例19:三維曲線圖function shili19h0=figure('toolbar','none',. 'position',200 150 450 4
32、00,. 'name','實(shí)例19');subplot(2,1,1)x=linspace(0,2*pi);y1=sin(x);y2=cos(x);y3=sin(x)+cos(x);z1=zeros(size(x);z2=0.5*z1;z3=z1;plot3(x,y1,z1,x,y2,z2,x,y3,z3)grid onxlabel('X軸');ylabel('Y軸');zlabel('Z軸');title('Figure1:3-D Plot')subplot(2,1,2)x=
33、linspace(0,2*pi);y1=sin(x);y2=cos(x);y3=sin(x)+cos(x);z1=zeros(size(x);z2=0.5*z1;z3=z1;plot3(x,z1,y1,x,z2,y2,x,z3,y3)grid onxlabel('X軸');ylabel('Y軸');zlabel('Z軸');title('Figure2:3-D Plot')實(shí)例20:圖形的隱藏屬性function shili20h0=figure('toolbar','none',. &
34、#160;'position',200 150 450 300,. 'name','實(shí)例20');subplot(1,2,1)x,y,z=sphere(10);mesh(x,y,z)axis offtitle('Figure1:Opaque')hidden onsubplot(1,2,2)x,y,z=sphere(10);mesh(x,y,z)axis offtitle('Figure2:Transparent')hidden off實(shí)例21:PEAKS函數(shù)曲線function shili2
35、1h0=figure('toolbar','none',. 'position',200 100 450 450,. 'name','實(shí)例21');x,y,z=peaks(30);subplot(2,1,1)x=x(1,:);y=y(:,1);i=find(y>0.8&y<1.2);j=find(x>-0.6&x<0.5);z(i,j)=nan*z(i,j);surfc(x,y,z)xlabel('X軸');yl
36、abel('Y軸');zlabel('Z軸');title('Figure1:surfc函數(shù)形成的曲面')subplot(2,1,2)x=x(1,:);y=y(:,1);i=find(y>0.8&y<1.2);j=find(x>-0.6&x<0.5);z(i,j)=nan*z(i,j);surfl(x,y,z)xlabel('X軸');ylabel('Y軸');zlabel('Z軸');title('Figure2:surfl函數(shù)形成的曲面')
37、 實(shí)例22:片狀圖function shili22h0=figure('toolbar','none',. 'position',200 150 550 350,. 'name','實(shí)例22');subplot(1,2,1)x=rand(1,20);y=rand(1,20);z=peaks(x,y*pi);t=delaunay(x,y);trimesh(t,x,y,z)hidden offtitle('Figure1:Triangular Surface Pl
38、ot');subplot(1,2,2)x=rand(1,20);y=rand(1,20);z=peaks(x,y*pi);t=delaunay(x,y);trisurf(t,x,y,z)title('Figure1:Triangular Surface Plot');實(shí)例23:視角的調(diào)整function shili23h0=figure('toolbar','none',. 'position',200 150 450 350,. 'name','實(shí)例
39、23');x=-5:0.5:5;x,y=meshgrid(x);r=sqrt(x.2+y.2)+eps;z=sin(r)./r;subplot(2,2,1)surf(x,y,z)xlabel('X-axis')ylabel('Y-axis')zlabel('Z-axis')title('Figure1')view(-37.5,30)subplot(2,2,2)surf(x,y,z)xlabel('X-axis')ylabel('Y-axis')zlabel('Z-axis')
40、title('Figure2')view(-37.5+90,30)subplot(2,2,3)surf(x,y,z)xlabel('X-axis')ylabel('Y-axis')zlabel('Z-axis')title('Figure3')view(-37.5,60)subplot(2,2,4)surf(x,y,z)xlabel('X-axis')ylabel('Y-axis')zlabel('Z-axis')title('Figure4')vie
41、w(180,0)實(shí)例24:向量場(chǎng)的繪制function shili24h0=figure('toolbar','none',. 'position',200 150 450 350,. 'name','實(shí)例24');subplot(2,2,1)z=peaks;ribbon(z)title('Figure1')subplot(2,2,2)x,y,z=peaks(15);dx,dy=gradient(z,0.5,0.5);contour(x,y,z,10)
42、hold onquiver(x,y,dx,dy)hold offtitle('Figure2')subplot(2,2,3)x,y,z=peaks(15);nx,ny,nz=surfnorm(x,y,z);surf(x,y,z)hold onquiver3(x,y,z,nx,ny,nz)hold offtitle('Figure3')subplot(2,2,4)x=rand(3,5);y=rand(3,5);z=rand(3,5);c=rand(3,5);fill3(x,y,z,c)grid ontitle('Figure4')實(shí)例25:燈光定位
43、function shili25h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例25');vert=1 1 1;1 2 1; 2 2 1;2 1 1; 1 1 2;1 2 2; 2 2 2;2 1 2;fac=1 2 3 4;2 6 7 3; 4 3 7 8;1 5 8 4;
44、 1 2 6 5;5 6 7 8;grid offsphere(36)h=findobj('type','surface');set(h,'facelighting','phong',. 'facecolor',. 'interp',. 'edgecolor',0.4 0.4 0.4,. 'backfacelighting',. '
45、;lit')hold onpatch('faces',fac,'vertices',vert,. 'facecolor','y');light('position',1 3 2);light('position',-3 -1 3);material shinyaxis vis3d offhold off實(shí)例26:柱狀圖function shili26h0=figure('toolbar','none',.
46、9;position',200 50 450 450,. 'name','實(shí)例26');subplot(2,1,1)x=5 2 1 8 7 3 9 8 6 5 5 5 4 3 2;bar(x)xlabel('X軸');ylabel('Y軸');title('第一子圖');subplot(2,1,2)y=5 2 1 8 7 3 9 8 6
47、60; 5 5 5 4 3 2;barh(y)xlabel('X軸');ylabel('Y軸');title('第二子圖');實(shí)例27:設(shè)置照明方式function shili27h0=figure('toolbar','none',. 'position',200 150 450 350,. 'name','實(shí)例27');subplot(2,2,1)sphereshading fla
48、tcamlight leftcamlight rightlighting flatcolorbaraxis offtitle('Figure1')subplot(2,2,2)sphereshading flatcamlight leftcamlight rightlighting gouraudcolorbaraxis offtitle('Figure2')subplot(2,2,3)sphereshading interpcamlight rightcamlight leftlighting phongcolorbaraxis offtitle('Fi
49、gure3')subplot(2,2,4)sphereshading flatcamlight leftcamlight rightlighting nonecolorbaraxis offtitle('Figure4')實(shí)例28:羽狀圖function shili28h0=figure('toolbar','none',. 'position',200 150 450 350,. 'name','實(shí)例28');subplot(2,1,1)al
50、pha=90:-10:0;r=ones(size(alpha);m=alpha*pi/180;n=r*10;u,v=pol2cart(m,n);feather(u,v)title('羽狀圖')axis(0 20 0 10)subplot(2,1,2)t=0:0.5:10;x=0.05+i;y=exp(-x*t);feather(y)title('復(fù)數(shù)矩陣的羽狀圖')實(shí)例29:立體透視(1)function shili29h0=figure('toolbar','none',. 'position
51、39;,200 150 450 250,. 'name','實(shí)例29');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);grid onfor i=-2:0.5:2; h1=surf(linspace(-2,2,20),. linspace(-2,2,20),. zeros(
52、20)+i); rotate(h1,1 -1 1,30) dx=get(h1,'xdata'); dy=get(h1,'ydata'); dz=get(h1,'zdata'); delete(h1) slice(x,y,z,v,-2 2,2,-2) hold on slice(x,y,z,v,dx,dy,dz) hold off
53、60; axis tight view(-5,10) drawnowend實(shí)例30:立體透視(2)function shili30h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例30');x,y,z=meshgrid(-2:0.1:2,. -2:0.1:2,. -2:0.1:
54、2);v=x.*exp(-x.2-y.2-z.2);dx,dy,dz=cylinder;slice(x,y,z,v,-2 2,2,-2)for i=-2:0.2:2 h=surface(dx+i,dy,dz); rotate(h,1 0 0,90) xp=get(h,'xdata'); yp=get(h,'ydata'); zp=get(h,'zdata'); delete(h)
55、hold on hs=slice(x,y,z,v,xp,yp,zp); axis tight xlim(-3 3) view(-10,35) drawnow delete(hs) hold offend實(shí)例31:表面圖形function shili31h0=figure('toolbar','none',. 'position',200 150 550 25
56、0,. 'name','實(shí)例31');subplot(1,2,1)x=rand(100,1)*16-8;y=rand(100,1)*16-8;r=sqrt(x.2+y.2)+eps;z=sin(r)./r;xlin=linspace(min(x),max(x),33);ylin=linspace(min(y),max(y),33);X,Y=meshgrid(xlin,ylin);Z=griddata(x,y,z,X,Y,'cubic');mesh(X,Y,Z)axis tighthold onplot3(x,y,z,
57、9;.','Markersize',20)subplot(1,2,2)k=5;n=2k-1;theta=pi*(-n:2:n)/n;phi=(pi/2)*(-n:2:n)'/n;X=cos(phi)*cos(theta);Y=cos(phi)*sin(theta);Z=sin(phi)*ones(size(theta);colormap(0 0 0;1 1 1)C=hadamard(2k);surf(X,Y,Z,C)axis square實(shí)例32:沿曲線移動(dòng)的小球h0=figure('toolbar','none',.
58、 'position',198 56 408 468,. 'name','實(shí)例32');h1=axes('parent',h0,. 'position',0.15 0.45 0.7 0.5,. 'visible','on');t=0:pi/24:4*pi;y=sin(t);plot(t,y,'b')n=length(t);h=line('color',0 0.5 0.5
59、,. 'linestyle','.',. 'markersize',25,. 'erasemode','xor');k1=uicontrol('parent',h0,. 'style','pushbutton',. 'position',80 100 50 30,. 'string','
60、開始',. 'callback',. 'i=1;',. 'k=1;,',. 'm=0;,',. 'while 1,',. 'if k=0,',. 'br
61、eak,',. 'end,',. 'if k=0,',. 'set(h,''xdata'',t(i),''ydata'',y(i),',. 'drawnow;,',. 'i=i+1;,',
62、. 'if i>n,',. 'm=m+1;,',. 'i=1;,',. 'end,',. 'end,',. 'end');k2=uicontrol('parent',h0
63、,. 'style','pushbutton',. 'position',180 100 50 30,. 'string','停止',. 'callback',. 'k=0;,',. 'set(e1,''string'',m),',.
64、60; 'p=get(h,''xdata'');,',. 'q=get(h,''ydata'');,',. 'set(e2,''string'',p);,',. 'set(e3,''
65、;string'',q)');k3=uicontrol('parent',h0,. 'style','pushbutton',. 'position',280 100 50 30,. 'string','關(guān)閉',. 'callback','close');e1=uicontrol('parent',h0,. &
66、#39;style','edit',. 'position',60 30 60 20);t1=uicontrol('parent',h0,. 'style','text',. 'string','循環(huán)次數(shù)',. 'position',60 50 60 20);e2=uicontrol('parent',h0,. 'st
67、yle','edit',. 'position',180 30 50 20);t2=uicontrol('parent',h0,. 'style','text',. 'string','終點(diǎn)的X坐標(biāo)值',. 'position',155 50 100 20);e3=uicontrol('parent',h0,. 'st
68、yle','edit',. 'position',300 30 50 20);t3=uicontrol('parent',h0,. 'style','text',. 'string','終點(diǎn)的Y坐標(biāo)值',. 'position',275 50 100 20);實(shí)例33:曲線轉(zhuǎn)換按鈕h0=figure('toolbar','none',
69、. 'position',200 150 450 250,. 'name','實(shí)例33');x=0:0.5:2*pi;y=sin(x);h=plot(x,y);grid onhuidiao=. 'if i=1,',. 'i=0;,',. 'y=cos(x);,',. 'delete(h),',. 'set(hm
70、,''string'',''正弦函數(shù)''),',. 'h=plot(x,y);,',. 'grid on,',. 'else if i=0,',. 'i=1;,',. 'y=sin(x);,',. 'set(hm,''string'',''余弦函數(shù)
71、''),',. 'delete(h),',. 'h=plot(x,y);,',. 'grid on,',. 'end,',. 'end'hm=uicontrol(gcf,'style','pushbutton',. 'string','余弦函數(shù)',. 'c
72、allback',huidiao);i=1;set(hm,'position',250 20 60 20);set(gca,'position',0.2 0.2 0.6 0.6)title('按鈕的使用')hold on實(shí)例34:柵格控制按鈕h0=figure('toolbar','none',. 'position',200 150 450 250,. 'name','實(shí)例34');x=0:0.5:2*pi;y
73、=sin(x);plot(x,y)huidiao1=. 'set(h_toggle2,''value'',0),',. 'grid on,',. huidiao2=. 'set(h_toggle1,''value'',0),',.
74、0;'grid off,',. h_toggle1=uicontrol(gcf,'style','togglebutton',. 'string','grid on',. 'value',0,. 'position',20 45 50 20,. 'callback',huidiao1);h_toggle2=uicontro
75、l(gcf,'style','togglebutton',. 'string','grid off',. 'value',0,. 'position',20 20 50 20,. 'callback',huidiao2);set(gca,'position',0.2 0.2 0.6 0.6)title('開關(guān)按鈕的使用')實(shí)例35:編輯框的使用h0=figu
76、re('toolbar','none',. 'position',200 150 350 250,. 'name','實(shí)例35');f='Please input the letter'huidiao1=. 'g=upper(f);,',. 'set(h2_edit,''string'',g),
77、',. huidiao2=. 'g=lower(f);,',. 'set(h2_edit,''string'',g),',. h1_edit=uicontrol(gcf,'style','edit',. 'position',100 200 100 50,. 'Horiz
78、ontalAlignment','left',. 'string','Please input the letter',. 'callback','f=get(h1_edit,''string'');',. 'background','w',. 'max',5,. 'min',1);h2_edit=uicontrol(gcf,'style','edit',. 'HorizontalAlignment','
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 15 快樂過新年(說課稿)2023-2024學(xué)年統(tǒng)編版道德與法治一年級(jí)上冊(cè)
- 醫(yī)療合同管理規(guī)范制度
- 27《巨人的花園》說課稿-2023-2024學(xué)年語文四年級(jí)下冊(cè)(統(tǒng)編版)
- 2024美容院加盟連鎖經(jīng)營(yíng)合同范本3篇
- 17 古詩三首 飲湖上初晴后雨 說課稿-2024-2025學(xué)年統(tǒng)編版語文三年級(jí)上冊(cè)
- 12示兒說課稿-2024-2025學(xué)年五年級(jí)上冊(cè)語文統(tǒng)編版
- 1 我們知道的植物 說課稿-2023-2024學(xué)年科學(xué)一年級(jí)上冊(cè)教科版
- 13 人物描寫一組 摔跤說課稿-2023-2024學(xué)年五年級(jí)下冊(cè)語文統(tǒng)編版
- 16海上日出 說課稿-2023-2024學(xué)年語文四年級(jí)下冊(cè)統(tǒng)編版
- 22古詩三首《墨梅》說課稿-2023-2024學(xué)年統(tǒng)編版語文四年級(jí)下冊(cè)
- 制造業(yè)成本精細(xì)化管理
- 平面直角坐標(biāo)系(單元教學(xué)設(shè)計(jì))大單元教學(xué)人教版七年級(jí)數(shù)學(xué)下冊(cè)
- 初中生物老師經(jīng)驗(yàn)交流課件
- 成人氧氣吸入療法-中華護(hù)理學(xué)會(huì)團(tuán)體標(biāo)準(zhǔn)
- 新公司成立商業(yè)計(jì)劃書
- (精)公司向個(gè)人借款合同
- 人教版三年級(jí)上冊(cè)脫式計(jì)算200題及答案
- 醫(yī)技溝通與合作課件
- 醫(yī)學(xué)專業(yè)醫(yī)學(xué)統(tǒng)計(jì)學(xué)試題(答案見標(biāo)注) (三)
- cnas實(shí)驗(yàn)室規(guī)劃方案
- 脊髓損傷的病理生理和病因
評(píng)論
0/150
提交評(píng)論