Yahoo Web Search

Search results

  1. People also ask

  2. The Windows ® operating system enforces a minimum window width and a maximum window size. If you specify a figure size outside of those limits, the displayed figure will conform to the limits instead of the size you specified.

    • SHG

      Select a Web Site. Choose a web site to get translated...

    • Figure Properties

      The left and bottom values center the figure. If the figure...

    • Axes

      Position two Axes objects in a figure and add a plot to each...

    • CLF

      Target figure, specified as a Figure object, a figure...

    • MATLAB Central

      6. Verknüpfen. Übersetzen. Beantwortet: karim botros am 12...

  3. Oct 23, 2019 · 6. Link. Open in MATLAB Online. Set the ‘Position’ property on the current figure (gcf). By default, the position is in pixels. Theme. Copy. x0=10; y0=10; width=550; height=400. set (gcf,'position', [x0,y0,width,height]) You can specify other units (inches, centimeters, normalized, points, or characters). For example: Theme. Copy.

  4. Feb 26, 2014 · 5 Answers. Sorted by: 82. The properties that can be set for a figure is referenced here. You could then use: figure_number = 1; x = 0; % Screen position. y = 0; % Screen position. width = 600; % Width of figure. height = 400; % Height of figure (by default in pixels) figure(figure_number, 'Position', [x y width height]);

    Code sample

    x = 0; % Screen position
    y = 0; % Screen position
    width = 600; % Width of figure
    height = 400; % Height of figure (by default in pixels)
    figure(figure_number, 'Position', [x y width height]);...
  5. Mar 11, 2016 · With older versions of Matlab, it was possible to set the exact figure size in pixels with a command such as: figure ('Position', [100 100 400 400]); This produced a figure with 400x400 pixels. After upgrading to R2015b, getting a 400x400 figure can be done on my computer with command: figure ('Position', [100 100 400/1.5 400/1.5]);

  6. plot(x,y) Set the figure size by clicking File > Export Setup. Specify the desired dimensions in the Width and Height fields, for example 5-by-4 inches. The dimensions include the entire figure window except for the frame, title bar, menu bar, and any tool bars.

  1. People also search for