放大 Matlab 图形控制手柄?
Enlarge Matlab figure control handles?
我可以把 MATLAB 中的 "control handles" 变大吗?
以前好看又大,现在小到根本点不进去!
Matlab R2014b 64 位 Ubuntu 14.04
您会看到它们是 微型 轴的第 8 corners/edges 个蓝点。
好吧,我终于找到了:我不得不增加默认图形 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)
这提供了合理大小的句柄。
我可以把 MATLAB 中的 "control handles" 变大吗? 以前好看又大,现在小到根本点不进去!
Matlab R2014b 64 位 Ubuntu 14.04
您会看到它们是 微型 轴的第 8 corners/edges 个蓝点。
好吧,我终于找到了:我不得不增加默认图形 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)
这提供了合理大小的句柄。