About 141,000 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 · For example subplot (3,4,5); plot (rand (15,1)); will plot into the middle row at the far left. You can also combine numbers. for example you could plot all the way across the top row …

  3. Create tiled chart layout for displaying subplots - MATLAB

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

  4. Plot function into subplots - MATLAB Answers - MATLAB Central

    Aug 12, 2019 · So it plots at the end of the function. Well, your function plots everything on one axes by explicitly calling plot () multiple times in a row without either creating a subplot or …

  5. How does subplot work and what is the difference between …

    Aug 31, 2016 · 14 I am a bit unclear with how subplot works. Specifically, what is the difference between subplot(121) and subplot(1,2,1) in MATLAB? I have tried to search the subplot …

  6. plot - 2-D line plot - MATLAB - MathWorks

    This MATLAB function creates a 2-D line plot of the data in Y versus the corresponding values in X.

  7. stem - Plot discrete sequence data - MATLAB - MathWorks

    This MATLAB function plots the data sequence, Y, as stems that extend from a baseline along the x-axis.

  8. sgtitle - Add title to grid of plots - MATLAB - MathWorks

    This MATLAB function adds a title above the grid of subplots in the current figure.

  9. Matlab: Subplot for 2 rows and 10 columns - Stack Overflow

    May 15, 2006 · The first two arguments of the subplot function give the total number of rows and columns of subplots in the figure, respectively, and the third gives the row-wise linear index of …

  10. How to code a figure having subplots with a for loop?

    Jan 7, 2017 · I want to simply the following codes to make a figure with 2-by-6 subplots. How can I make it with a for loop? figure(1); h1=subplot(2,6,1), hLine1=plot(X,A(1,:),X,B(1,:));title(...