donkeyxu 发表于 2007-11-16 22:34

归一化二阶系统的阶跃响应曲线的GUI实现

clf reset
H=axes('unit','normalized','position',,'visible','off');
set(gcf,'currentaxes',H);
str='\fontname{隶书}归一化二阶系统的阶跃响应曲线';
text(0.12,0.93,str,'fontsize',13);
h_fig=get(H,'parent');
set(h_fig,'unit','normalized','position',[.1,.2,.7,.4]);
h_axes=axes('parent',h_fig,...
    'unit','normalized','position',[.1,.15,.55,.7],...
    'xlim',,'ylim',,'fontsize',8);
h_text=uicontrol(h_fig,'style','text',...
    'unit','normalized','position',[.67,.73,.25,.14],...
    'horizontal','left','string',{'输入阻尼比系数','zeta='});
h_edit=uicontrol(h_fig,'style','edit',...
    'unit','normalized','position',[.67,.59,.25,.14],...
    'horizontal','left','callback',...
    ['z=str2num(get(gcbo,''string''));',...
    't=0:.1:15;','for k=1:length(z);',...
    's2=tf(1,);','y(:,k)=step(s2,t);',...
    'h_plot=plot(t,y(:,k));'...
    'if length(z)>1 ,hold on,end,end,','hold off']);
h_push1=uicontrol(h_fig,'style','push','unit','normalized','position',[.67,.37,.12,.15],...
    'string','grid on','callback',['try m=m+1;catch m=1;end,',...
    'if mod(m,2)==1,grid on;set(h_push1,''string'',''grid off''),else grid off;',...
    'set(h_push1,''string'',''grid on''),end']);
h_push2=uicontrol(h_fig,'style','push','unit','normalized','position',[.67,.15,.12,.15],...
    'string','clear','callback',...
    ['ha=axis;xli=ha(2)/4;yli=ha(4)/2;',...
    'try cla(h_axes);h_plot==1;clear h_plot,catch '...
    'text(xli,yli,''\fontname{楷书}没有图,你耍我啊!'',''fontsize'',20,''color'',''b''),end;',...
   'set(h_edit,''string'','''')']);

[ 本帖最后由 eight 于 2007-11-16 22:57 编辑 ]

eight 发表于 2007-11-16 22:57

原帖由 donkeyxu 于 2007-11-16 22:34 发表 http://www.chinavib.com/forum/images/common/back.gif
clf reset
H=axes('unit','normalized','position',,'visible','off');
set(gcf,'currentaxes',H);
str='\fontname{隶书}归一化二阶系统的阶跃响应曲线';
text(0.12,0.93,str,'fontsize',13);
h_ ...

什么东西?请描述清楚

donkeyxu 发表于 2007-11-17 11:45

回复 #2 eight 的帖子

只是一个GUI,看看实现过程而已。
输入值0.1:0.1:1,比较好看.

PS:为啥论坛没有自定义头像?

[ 本帖最后由 donkeyxu 于 2007-11-17 13:01 编辑 ]

eight 发表于 2007-11-17 22:44

原帖由 donkeyxu 于 2007-11-17 11:45 发表 http://www.chinavib.com/forum/images/common/back.gif
只是一个GUI,看看实现过程而已。
输入值0.1:0.1:1,比较好看.

PS:为啥论坛没有自定义头像?

你到底是共享资源给大家,还是程序有问题需要大伙修改?还有,问题的背景等等,请简单描述一下

你的等级应该可以自定义头像,具体请看看“我的权限”
页: [1]
查看完整版本: 归一化二阶系统的阶跃响应曲线的GUI实现