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
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.