2

类似于:设置图形大小

但是,我只想设置width 和 height,而不关心位置。期望的行为是我可以随意拖动图形,但在每次重新绘制时,大小都是固定的。

我不喜欢上面链接中的方法,因为您必须为该位置提供 (x,y) 坐标,这在代码开发或我使用不同的计算机时很烦人。但也许有更聪明的方法来使用该 set() 函数?

编辑:酷@下面的答案,这是我更新的功能。另一件事是保持“沉默”,这样人物就不会不断地关注焦点。

function h = sfigure(h,s1,s2)
% SFIGURE  Create figure window (minus annoying focus-theft).
%
% Usage is identical to figure.
%
% Daniel Eaton, 2005
%
% See also figure
%
% Modified by Peter Karasev, 2012, to optionally set scale
%

if nargin>=1 
    if ishandle(h)
        set(0, 'CurrentFigure', h);
    else
        h = figure(h);
    end
else
    h = figure;
end

if( nargin > 1 )
  scaleX = s1;
  scaleY = s1;
  if( nargin > 2 )
    scaleY = s2;
  end
  pos = get(h,'Position');
  pos(3:4) = [400 300].*[scaleX scaleY];
  set(gcf,'Position',pos);
end
4

1 回答 1

2

结合对应的get函数:

figure
pos = get(gcf,'Position');
pos(3:4) = [w h];
set(gcf,'Position',pos);

This will keep the default position and only change the width and height.

于 2012-03-10T20:58:20.033 回答