⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abc.m

📁 matlab的一些基础程序
💻 M
字号:
clc;clf
clear
% h=figure;
m=uicontrol(gcf,'style','pushbutton','string','第 1 题 ','fontsize',20,'units','normalized','position',...
    [0.1 0.8 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','z');
m1=uicontrol(gcf,'style','pushbutton','string','第 2 题 ','fontsize',20,'units','normalized','position',...
    [0.4 0.8 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','five');
m2=uicontrol(gcf,'style','pushbutton','string','第 3 题 ','fontsize',20,'units','normalized','position',...
    [0.7 0.8 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','one');
m3=uicontrol(gcf,'style','pushbutton','string','第 4 题 ','fontsize',20,'units','normalized','position',...
    [0.1 0.6 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','two');
m4=uicontrol(gcf,'style','pushbutton','string','第 5 题 ','fontsize',20,'units','normalized','position',...
    [0.4 0.6 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','three');
m5=uicontrol(gcf,'style','pushbutton','string','第 6 题 ','fontsize',20,'units','normalized','position',...
    [0.7 0.6 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','four');
m6=uicontrol(gcf,'style','pushbutton','string','第 7 题 ','fontsize',20,'units','normalized','position',...
    [0.1 0.4 0.2 0.1],'foregroundcolor','r','backgroundcolor','y');
m7=uicontrol(gcf,'style','pushbutton','string','第 8 题 ','fontsize',20,'units','normalized','position',...
    [0.4 0.4 0.2 0.1],'foregroundcolor','r','backgroundcolor','y');
m8=uicontrol(gcf,'style','pushbutton','string','第 9 题 ','fontsize',20,'units','normalized','position',...
    [0.7 0.4 0.2 0.1],'foregroundcolor','r','backgroundcolor','y');
m9=uicontrol(gcf,'style','pushbutton','string','单图显示 ','tag','ab','fontsize',18,'units','normalized','position',...
    [0.1 0.2 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','cho');
m10=uicontrol(gcf,'style','pushbutton','string','关闭','fontsize',20,'units','normalized','position',...
    [0.4 0.2 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','callback','ad');
m11=uicontrol(gcf,'style','pushbutton','string','多图显示 ','fontsize',18,'units','normalized','position',...
    [0.7 0.2 0.2 0.1],'foregroundcolor','r','backgroundcolor','y','tag','1','callback','cho');
% % set(m9,'Tag','a')
%  a=get(m9,'tag')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -