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
Spring-Mass System - Panel
Spring-Mass System - Panel

Step 5: Structure Creation

We will create a "structure" to contain the m and k values. You can think of a "structure" as a box that can contain any type of MATLAB entity. We will then pass only the structure or box to the Euler function. In the function, we'll unpack the box to get the m and k values. The advantage of collecting values in a box is that it simplifies the function call. If we need to pass more values like, say, the initial conditions, into the function, we just need to add them to the box i.e. the structure. The function call will not change. Follow the steps in the video to create a structure containing the m and k values. We'll then use the debugger to step through the code and understand how this changes how variables are handled.


HTML
 <iframe width="600" height="338" src="//www.youtube.com/embed/RspV4XBMHAo?rel=0" frameborder="0" allowfullscreen></iframe> 


Go to Exercises

Go to all MATLAB Learning Modules