setvolumerange.m

来自「MATLAB源文件」· M 代码 · 共 19 行

M
19
字号
function setvolumerange% Query for a new volume range based on the sliceomatic gui% which should be GCF  % Copyright 2000, 2001, 2002, 2003, 2004, 2005 The MathWorks Inc  %d=getappdata(fig,'sliceomatic');    p=get(fig,'position');  np=[p(1)+20 p(2)+30 400 200];  figure('position',np);    uicontrol('units','norm','style','text','string','X Range',...            'position',[0 .6 .3 .3]);  uicontrol('units','norm','style','text','string','Y Range',...            'position',[0 .3 .3 .3]);  uicontrol('units','norm','style','text','string','Z Range',...            'position',[0 0  .3 .3]);  

⌨️ 快捷键说明

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