wbutt.m

来自「求解量子力学的薛定谔方程」· M 代码 · 共 14 行

M
14
字号
function h = wbutt(x,y)%> This is a standard red 'wait' button of given %> length = .15 and height = .05.%> Call:  wbutt(x,y)%> Input: x, y = position of lower left corner%> No callback.uicontrol('Style','pushbutton','Units','normalized',...          'Position',[x,y,.15, .05],'String','WAIT...',...          'BackGroundColor',[.85 .0 .0],'ForeGroundColor','w',...          'Fontsize',12); %>%> 

⌨️ 快捷键说明

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