Matlab - implay's default size window

前端 未结 3 1119
再見小時候
再見小時候 2021-01-01 04:08

I am using implay to play some frames i want, the thing is that window size that pops is a bit small,so the user must maximize it by himself, is there any w

3条回答
  •  迷失自我
    2021-01-01 04:26

    You can control the size of a figure using 'Position' property.
    This property expect a 4-element vector in the format [fromX fromY width height], thus, by changing the width and height you can control the size of the figure.

    For example

    figure( 'Position', [150 150 700 550] )
    

    Opens a new figure with width of 700 pixels and height of 550 pixels.

提交回复
热议问题