cooldog123pp 发表于 2024-6-22 20:44

matlab——可设置函数曲线图视角的用户界面

h0=figure('toolbar','none',...
    'position',,...
    'name','实例52');
h1=axes('parent',h0,...
    'position',,...
    'visible','off');
=meshgrid(-8:0.5:8);
r=sqrt(x.^2+y.^2)+eps;
z=sin(r)./r;
fh=surf(x,y,z);
shading interp
view([-60 30])
fv=get(h1,'view');
fv2=fv;
camlight left
sh1=uicontrol('parent',h0,...
    'style','slider',...
    'max',1,...
    'min',-1,...
    'value',fv(1)/180,...
    'position',,...
    'callback',[...
      'fv(1)=90*get(sh1,''value'');,',...
      'set(h1,''view'',),',...
      'set(ed1,''string'',fv(1))']);   
text1=uicontrol('parent',h0,...
    'style','text',...
    'string','方位角的变化滑标',...
    'position',);
sh2=uicontrol('parent',h0,...
    'style','slider',...
    'max',1,...
    'min',-1,...
    'value',fv(2)/180,...
    'position',,...
    'callback',[...
      'fv(2)=90*get(sh2,''value'');,',...
      'set(h1,''view'',),',...
      'set(ed2,''string'',fv(2))']);
text2=uicontrol('parent',h0,...
    'style','text',...
    'string','仰角的变化滑标',...
    'position',);
ed1=uicontrol('parent',h0,...
    'style','edit',...
    'string',fv(1),...
    'position',);
text3=uicontrol('parent',h0,...
    'style','text',...
    'string','方位角的数值',...
    'position',);
ed2=uicontrol('parent',h0,...
    'style','edit',...
    'string',fv(2),...
    'position',);
text4=uicontrol('parent',h0,...
    'style','text',...
    'string','仰角的数值',...
    'position',);
pf1=uicontrol('parent',h0,...
    'style','pushbutton',...
    'string','重置',...
    'position',,...
    'callback',[...
      'set(h1,''view'',fv2),',...
      'set(sh1,''value'',fv2(1)/180),',...
      'set(sh2,''value'',fv2(2)/180),',...
      'set(ed1,''string'',fv2(1)),',...
      'set(ed2,''string'',fv2(2))']);
pf2=uicontrol('parent',h0,...
    'style','pushbutton',...
    'string','关闭',...
    'position',,...
    'callback','close');

页: [1]
查看完整版本: matlab——可设置函数曲线图视角的用户界面