cbutt.m
来自「求解量子力学的薛定谔方程」· M 代码 · 共 14 行
M
14 行
function h = cbutt(x,y)%> This is a standard green 'continue' button of given %> length = .15 and height = .05.%> Call: cbutt(x,y)%> Input: x, y = position of lower left corner%> The callback is 'uiresume'.h=uicontrol('Style','pushbutton','Units','normalized',... 'Position',[x,y,.15, .05],'String','CONTINUE',... 'BackGroundColor',[.0 .7 .0],'ForeGroundColor','r',... 'Fontsize',12,'Callback','uiresume'); uiwait;%>%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?