About 73 results
Open links in new tab
  1. subplot - Create axes in tiled positions - MATLAB - MathWorks

    This MATLAB function divides the current figure into an m-by-n grid and creates axes in the position specified by p.

  2. what is subplot and how to use it? - MATLAB Answers - MathWorks

    Oct 5, 2012 · The tile layout is the same as subplot, but tiledlayout also supports a "flow" layout that will automatically adjust the number of rows and columns to optimally fit your axes.

  3. Plotting multiple figures using subplot - MATLAB Answers - MATLAB …

    Feb 26, 2024 · MATLAB® numbers subplot positions by row. The first subplot is the first column of the first row, the second subplot is the second column of the first row, and so on.

  4. Create tiled chart layout for displaying subplots - MATLAB - MathWorks

    This MATLAB function creates a tiled chart layout for displaying multiple plots, also called subplots, in the current figure.

  5. subplot - Erstellen von Achsen in kachelartiger Anordnung - MATLAB

    Diese MATLAB-Funktion unterteilt die aktuelle Abbildung in ein mxn-Raster und erstellt Achsen an den von p angegebenen Positionen.

  6. subplot within a subplot - MATLAB Answers - MATLAB Central

    Jul 2, 2012 · You cannot have a subplot within a subplot. See http://www.mathworks.com/matlabcentral/answers/42168-subplots-in-an-axes-object

  7. subplot - Crear ejes en posiciones segmentadas - MATLAB

    Esta función de MATLAB divide la figura actual en una cuadrícula de m por n y crea ejes en la posición que especifica p.

  8. plotting multiple images in subplot - MATLAB Answers - MATLAB Central

    Apr 26, 2016 · One way to accomplish this task is to call subplots with the 'position' argument, which allows you to specify exactly on the figure where your axes will be plotted.

  9. How can I make a subplot of subplots? - MATLAB Answers - MathWorks

    Feb 3, 2020 · Hi everyone, I'd like to create a figure (3 rows and 2 columns) using a for loop: every row is made up of other 2 subplots that I create with a function that is in the loop.

  10. Decreasing gaps between subplots - MATLAB Answers - MATLAB Central

    Aug 9, 2010 · To decrease the distances between subplots in MATLAB, you can utilize the `Position` property of each subplot or use the `tight_subplot` function if you prefer a more automated approach.