MATLAB For Dummies
Book image
Explore Book Buy On Amazon

MATLAB allows you to display your plots however you choose. Here are three plots — one on top of the other. You don’t have to display the plots in this manner. Instead, you can display them side by side (or even in a grid). To make this happen, you use the subplots feature of MATLAB. A subplot is simply a plot that takes up only a portion of the display.

image0.jpg

Creating a subplot

The best way to understand subplots is to see them in action. The following steps help you create the three previous plots as subplots:

  1. Type clf and press Enter.

    MATLAB clears any previous plot you created.

  2. Type subplot(1, 3, 1) and press Enter.

    This function creates a grid consisting of one row and three columns. It tells MATLAB to place the first plot in the first space in the grid. You see the blank space for the plot.

    image1.jpg
  3. Type p1 = plot(x, sin(x), ‘g-’) and press Enter.

    You see the first plot added to the display.

    image2.jpg

    Notice that the example is creating the plots one at a time. You can’t combine plots in a single call when using subplots. In addition, you need to maintain a handle to each of the plots in order to configure them

  4. Type subplot(1, 3, 2) and press Enter.

    MATLAB selects the second area for the next plot.

  5. Type p2 = plot(x, cos(x), ‘b-’) and press Enter.

    You see the second plot added to the display.

  6. Type subplot(1, 3, 3) and press Enter.

    MATLAB selects the third area for the next plot.

  7. Type p3 = plot(x, power(x, 2), ‘m:’) and press Enter.

    You see the third plot added to the display.

    image3.jpg

    Each plot takes up the entire area. You can’t compare plots easily because each plot is in its own space and uses its own units of measure. However, this approach does have the advantage of letting you see each plot clearly.

Changing subplot information

The subplot() function doesn’t change anything — it merely selects something. For example, some plots lack titles. To add a title to the first plot, follow these steps:

  1. Type subplot(1, 3, 1) and press Enter.

    MATLAB selects the first subplot.

  2. Type title(‘Sine’) and press Enter.

    You see a title added to the first subplot.

    image4.jpg

Configuring individual plots

To work with a subplot in any meaningful way, you need to have a handle to the subplot. The following steps describe how to change the color and line type of the second plot:

  1. Type subplot(1, 3, 2) and press Enter.

    MATLAB selects the second subplot. Even though the handle used with the set() command in the following step will select the subplot for you, this step is added so that you can actually see MATLAB select the subplot. Sometimes, performing this task as a separate step is helpful to ensure that any function calls that follow use the correct subplot, even when these function calls don’t include a handle.

    When you start creating scripts, you find that errors creep into scripts when you’re making assumptions about which plot is selected, rather than knowing for sure which plot is selected.

  2. Type set(p2, ‘color’, ‘r’) and press Enter.

    The line color is now red. The set() function accepts a handle to a plot or another MATLAB object as the first value, the name of a property as the second, and the new value for that property as the third. This function call tells MATLAB to change the color property of the line pointed at by p2 to red.

  3. Type set(p2, ‘LineStyle’, ‘-.’) and press Enter.

    The LineStyle property for the Cosine plot is now set to dash dot.

    image5.jpg

About This Article

This article is from the book:

About the book authors:

John Paul Mueller is an author and technical editor with experience in application development, database management, machine learning, and deep learning. He has written hundreds of books and articles helping everyday people learn everything from networking to database management.

John Mueller has produced 114 books and more than 600 articles on topics ranging from functional programming techniques to working with Amazon Web Services (AWS). Luca Massaron, a Google Developer Expert (GDE),??interprets big data and transforms it into smart data through simple and effective data mining and machine learning techniques.

This article can be found in the category: