0

为了找到像素宽度,我该怎么做matlab

编辑我需要例如mm的宽度

谢谢。

4

1 回答 1

3

尝试使用ScreenPixelsPerInch根对象的属性。

pixelsPerInch = get(0, 'ScreenPixelsPerInch');
mmPerInch     = 25.4;
mmPerPixel    = mmPerInch / pixelsPerInch;
于 2012-11-19T06:50:58.900 回答