File Exchange Pick of the Week

October 26th, 2007

MATLAB Basics: Linearly spaced vectors

When I look at code written by new users, sometimes, I will see code like this:

a = [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15];

There is an easier way:

a = 1:13;

This three minute video shows how to use commands like linspace and the colon operator to make vectors like:
[1 2 3 4 5] or [-1 -0.5 0 0.5 1].

Video Content

Find the files here.

Other videos have been gathered here:
http://blogs.mathworks.com/pick/category/video/

Other MATLAB Basics posts have been gathered here:
http://blogs.mathworks.com/pick/category/matlab-basics/

One Response to “MATLAB Basics: Linearly spaced vectors”

  1. Muddasser Alam replied on :

    Excellent, thanks a lot!


MathWorks

Brett & Jiro share their favorite user-contributed submissions from the File Exchange.

These postings are the author's and don't necessarily represent the opinions of MathWorks.