Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Include Page
MATLAB Google Analytics
MATLAB Google Analytics
Include Page
Intro Learning Module - Panel
Intro Learning Module - Panel

Tips for MAE 2120 Project 1

Combining Multiple Plots into One Figure

To present results compactly and succinctly, you can combine plots into one figure. For example, shearing force, bending moments and torque plots for a shaft can be presented in the same figure using the subplot function. 

These subplots were generated using the following syntax. 

Here is the script to generate this figure. (Right-click and select save target as, or just left-click and copy-paste into the editor)

For more information on subplots,  you can refer yourself to the MATLAB documentation. 

Marking Max and Min Locations in Plots

Use the max function to find the maximum value. For example, to find the maximum value of Bending Moment, use:


Then, the plot function can be used to mark an "x" in the graph to identify the location of this maximum value. 


Here is an example script that performs this task. Similarly, you can use the min function to find and mark the minimum value. 

Recording Max and Min Values in Plots

The text function can be used to record the maximum or minimum value. 

Example:

Here is our example script which also records the max value of Bending Moment. 

More tips...

  • You can have multiples outputs from a function. 
    • Example: 
  • Use cosd(theta) if theta is in degrees. 
  • Pre-Allocation: Initialize arrays using zeros function. This will results in much faster code. 
  • Make sure your code is compatible with MATLAB 8.1 (included in release 2013a) 

Go to Comments

Go to all MATLAB Learning Modules