放大Matlab图控制手柄?

时间:2016-08-23 00:25:43

标签: matlab matlab-figure

我可以让MATLAB中的“控制手柄”更大吗? 他们过去很好,很大,但现在他们很小,我根本无法点击它们!

enter image description here

Matlab R2014b 64位在Ubuntu 14.04上

你会发现它们是轴的8个角/边缘的微小蓝点。

1 个答案:

答案 0 :(得分:0)

好的,我最终找到了它:我必须增加我的默认数字DPI设置,如下所示:

get(0)

     CallbackObject: []
           Children: []
      CurrentFigure: []
 FixedWidthFontName: 'Courier New'
   HandleVisibility: 'on'
   MonitorPositions: [3x4 double]
             Parent: []
    PointerLocation: [673 377]
        ScreenDepth: 24
ScreenPixelsPerInch: 30
         ScreenSize: [1 1 2560 1600]
  ShowHiddenHandles: 'off'
                Tag: ''
               Type: 'root'
              Units: 'pixels'
           UserData: []


set(0,'ScreenPixelsPerInch',90)

这提供了合理尺寸的手柄。