Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From the Matlab figure documentation:</p> <blockquote> <p>Specifying Figure Size and Screen Location</p> <p>To create a figure window that is one quarter the size of your screen and is positioned in the upper left corner, use the root object's ScreenSize property to determine the size. ScreenSize is a four-element vector: [left, bottom, width, height]:</p> <p><code>scrsz = get(0,'ScreenSize'); figure('Position',[1 scrsz(4)/2 scrsz(3)/2 scrsz(4)/2])</code></p> <p>To position the full figure window including the menu bar, title bar, tool bars, and outer edges, use the OuterPosition property in the same manner.</p> </blockquote> <p>Like this:</p> <p><code>set (gcf(), 'outerposition', [25 500, 560, 470])</code></p> <p>And furthermore, in the documentation for Root Properties:</p> <blockquote> <p>MonitorPositions</p> <p>[x y width height;x y width height]</p> <p>Width and height of primary and secondary monitors, in pixels. Contains the width and height of each monitor connnected to your computer. The x and y values for the primary monitor are 0, 0 and the width and height of the monitor are specified in pixels.</p> <p>The secondary monitor position is specified as: x = primary monitor width + 1 y = primary monitor height</p> <p>Querying the value of the figure MonitorPositions on a multiheaded system returns the position for each monitor on a separate line. v = get(0,'MonitorPositions') v = x y width height % Primary monitor x y width height % Secondary monitor</p> <p>The value of the ScreenSize property is inconsistent when using multiple monitors. If you want specific and consistent values, use the MonitorPositions property.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload