matlab - figure('Position',[x y width height]) won't go over height 800 -
i'm using external monitor. notebook has display of height 800 px, monitor has on 1000 px. if i'm running script on external monitor
screensize = get(0,'monitorpositions'); figuresize = screensize(4); figure('position',[0 0 figuresize figuresize]) the size of new figure won't go on size of notebook display. there way how fix this?
edit
i have found if start matlab while having set external monitor output device, script runs ok. there way how reset settings, responsible, before running skript?
you want:
figuresize = screensize(monitornumber,4); as screensize(4) give 4th element in matrix - same screensize = screensize(:)
Comments
Post a Comment