Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

The MATLAB code analyzer produces two warnings about our x and t arrays changing size on every iteration as demonstrated in the video below. These warnings can be addressed by pre-allocating the memory for these arrays.

HTML
Wiki Markup
{html}<iframe width="600" height="338" src="//www.youtube.com/embed/N9JEnT76BKY?rel=0" frameborder="0" allowfullscreen></iframe>{html}


The following video briefly explains why array pre-allocation leads to faster code. See this blog-post for more information about pre-allocation.

HTML
Wiki Markup
{html}<iframe width="600" height="450" src="//www.youtube.com/embed/iSVEN_feRKA?rel=0" frameborder="0" allowfullscreen></iframe>{html}


Pre-Allocation Procedure

We pre-allocate the x and t arrays using the zeros function as shown below.

HTML
Wiki Markup
{html} <iframe width="600" height="338" src="//www.youtube.com/embed/BFR8WjtYwNg?rel=0" frameborder="0" allowfullscreen></iframe> {html}


Change in Run-Time due to Pre-Allocation

We next use the "profiler" in MATLAB to check how much the run-time decreases due to pre-allocation.

HTML
Wiki Markup
{html} <iframe width="600" height="338" src="//www.youtube.com/embed/bfqQTGe_pxU?rel=0" frameborder="0" allowfullscreen></iframe> {html}



Go to Step 3: Plotting

Go to all MATLAB Learning Modules