matlab 修改曲型

[复制链接]
997|0
 楼主| cooldog123pp 发表于 2024-5-25 10:52 | 显示全部楼层 |阅读模式
  1. 修改曲型

  2. h0=figure('toolbar','none',...
  3.     'position',[198 56 408 468],...
  4.     'name','实例48');
  5. h1=axes('parent',h0,...
  6.     'position',[0.15 0.45 0.7 0.5],...
  7.     'visible','on');
  8. x=0:0.1:2*pi;
  9. k=plot(x,sin(x));
  10. xlabel('自变量X');
  11. ylabel('函数值Y');
  12. title('线型的改变');
  13. p1=uicontrol('parent',h0,...
  14.     'style','pushbutton',...
  15.     'string','-.',...
  16.     'fontsize',20,...
  17.     'foregroundcolor',[1 1 1],...
  18.     'backgroundcolor',[0 0 0],...
  19.     'position',[60 100 50 20],...
  20.     'callback','set(k,''linestyle'',''-.'')');
  21. p2=uicontrol('parent',h0,...
  22.     'style','pushbutton',...
  23.     'string',':',...
  24.     'fontsize',20,...
  25.     'foregroundcolor',[1 1 1],...
  26.     'backgroundcolor',[0 0 0],...
  27.     'position',[170 100 50 20],...
  28.     'callback','set(k,''linestyle'','':'')');
  29. p3=uicontrol('parent',h0,...
  30.     'style','pushbutton',...
  31.     'string','-',...
  32.     'fontsize',20,...
  33.     'foregroundcolor',[1 1 1],...
  34.     'backgroundcolor',[0 0 0],...
  35.     'position',[280 100 50 20],...
  36.     'callback','set(k,''linestyle'',''-'')');
  37. p4=uicontrol('parent',h0,...
  38.     'style','pushbutton',...
  39.     'backgroundcolor',[1 1 1],...
  40.     'fontsize',20,...
  41.     'fontweight','demi',...
  42.     'string','关闭',...
  43.     'position',[150 30 80 60],...
  44.     'callback','close');
  45. t1=uicontrol('parent',h0,...
  46.     'style','text',...
  47.     'string','点划线',...
  48.     'fontsize',12,...
  49.     'fontweight','demi',...
  50.     'position',[60 120 50 20]);
  51. t2=uicontrol('parent',h0,...
  52.     'style','text',...
  53.     'string','虚线',...
  54.     'fontsize',12,...
  55.     'fontweight','demi',...
  56.     'position',[170 120 50 20]);
  57. t3=uicontrol('parent',h0,...
  58.     'style','text',...
  59.     'string','实线',...
  60.     'fontsize',12,...
  61.     'fontweight','demi',...
  62.     'position',[280 120 50 20]);


您需要登录后才可以回帖 登录 | 注册

本版积分规则

2304

主题

7628

帖子

31

粉丝
快速回复 在线客服 返回列表 返回顶部