簡単な質問:MATLABで現在のFigureサイズをどのように取得しますか?
例:
figure(1)
[width, height] = ****some function I'm not aware of****
これをグーグルすると、常にどのようにchangeウィンドウサイズが返されますが、現在のウィンドウサイズを取得する方法は返されません。
どんな助けでもありがたいです。
乾杯
pos = get(gcf, 'Position'); %// gives x left, y bottom, width, height
width = pos(3);
height = pos(4);