计算显示分辨率(宽度和高度)

时间:2013-02-17 19:00:30

标签: math wolfram-mathematica

我想以宽度/高度计算显示分辨率,此比率始终为0.75 例如:768/1024 = 0.75

我只有MegaPixel 6,1 MP的价值

我该怎么做?

1 个答案:

答案 0 :(得分:1)

不是Mathematica:

width*height=megapixels
3*width*height=3*megapixels
3*width=4*height
4*height*height=3*megapixels
height^2=3*megapixels/4
height=sqrt(3*megapixels)/2
width=4/3*height

你可能会因为6.1 MP不准确而有错误