Matlab Report
Matlab Report
1 Tutorial lessons 1 1
1.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Basic features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 A minimum MATLAB session . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3.1 Starting MATLAB . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3.2 Using MATLAB as a calculator . . . . . . . . . . . . . . . . . . . . . 4
1.3.3 Quitting MATLAB . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.4 Getting started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.4.1 Creating MATLAB variables . . . . . . . . . . . . . . . . . . . . . . . 5
1.4.2 Overwriting variable . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.4.3 Error messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.4.4 Making corrections . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.4.5 Controlling the hierarchy of operations or precedence . . . . . . . . . 6
1.4.6 Controlling the appearance of floating point number . . . . . . . . . . 8
1.4.7 Managing the workspace . . . . . . . . . . . . . . . . . . . . . . . . . 8
1.4.8 Keeping track of your work session . . . . . . . . . . . . . . . . . . . 9
1.4.9 Entering multiple statements per line . . . . . . . . . . . . . . . . . . 9
1.4.10 Miscellaneous commands..................................................................................10
1.4.11 Getting help.......................................................................................................10
1.5 Exercises..........................................................................................................................11
2 Tutorial lessons 2 12
2.1 Mathematical functions.................................................................................................12
2.1.1 Examples.............................................................................................................13
ii
6 Debugging M-files 49
6.1 Introduction.....................................................................................................................49
6.2 Debugging process.........................................................................................................49
6.2.1 Preparing for debugging....................................................................................50
6.2.2 Setting breakpoints............................................................................................50
iii
A Summary of commands 53
iv
vi
vii
Tutorial lessons 1
1.1 Introduction
The tutorials are independent of the rest of the document. The primarily objective is to help
you learn quickly the first steps. The emphasis here is “learning by doing”. Therefore,
the best way to learn is by trying it yourself. Working through the examples will give you a
feel for the way that MATLAB operates. In this introduction we will describe how
MATLAB handles simple numerical expressions and mathematical formulas.
The name MATLAB stands for MATrix LABoratory. MATLAB was written originally
to provide easy access to matrix software developed by the LINPACK (linear system package)
and EISPACK (Eigen system package) projects.
MATLAB [1] is a high-performance language for technical computing. It integrates
computation, visualization, and programming environment. Furthermore, MATLAB is a
modern programming language environment: it has sophisticated data structures, contains
built-in editing and debugging tools, and supports object-oriented programming. These factors
make MATLAB an excellent tool for teaching and research.
MATLAB has many advantages compared to conventional computer languages (e.g.,
C, FORTRAN) for solving technical problems. MATLAB is an interactive system whose
basic data element is an array that does not require dimensioning. The software
package has been commercially available since 1984 and is now considered as a standard tool
at most universities and industries worldwide.
It has powerful built-in routines that enable a very wide variety of computations. It
also has easy to use graphics commands that make the visualization of results immediately
available. Specific applications are collected in packages referred to as toolbox. There are
toolboxes for signal processing, symbolic computation, control theory, simulation,
optimiza- tion, and several other fields of applied science and engineering.
In addition to the MATLAB documentation which is mostly available on-line, we would
• How to log on
• Invoke MATLAB
• Do a few simple calculations
• How to quit MATLAB
After logging into your account, you can enter MATLAB by double-clicking on the
MATLAB shortcut icon (MATLAB 7.0.4) on your Windows desktop. When you start
MATLAB, a special window called the MATLAB desktop appears. The desktop is a window that
contains other windows. The major tools within or accessible from the desktop are:
NOTE: To simplify the notation, we will use this prompt, >>, as a standard prompt
sign, though our MATLAB version is for educational purpose.
As an example of a simple interactive calculation, just type the expression you want to
evaluate. Let’s start at the very beginning. For example, let’s suppose you want to
calculate the expression, 1 + 2 × 3. You type it at the prompt command (>>) as follows,
>> 1+2*3
ans =
7
You will have noticed that if you do not specify an output variable, MATLAB uses
a default variable ans, short for answer, to store the results of the current calculation.
Note that the variable ans is created (or overwritten, if it is already existed). To avoid
this, you may assign a value to a variable or output argument name. For example,
>> x = 1+2*3
x =
7
will result in x being given the value 1 + 2 × 3 = 7. This variable name can always
be used to refer to the results of the previous computations. Therefore, computing 4x will
result in
>> 4*x
ans =
28.0000
Before we conclude this minimum session, Table 1.1 gives the partial list of arithmetic
operators.
4
To end your MATLAB session, type quit in the Command Window, or select File
−→
MATLAB variables are created with an assignment statement. The syntax of variable as-
signment is
For example,
>> x = expression
• manual entry
• built-in functions
• user-defined functions
Once a variable has been created, it can be reassigned. In addition, if you do not wish to
see the intermediate results, you can suppress the numerical output by putting a semicolon
(;) at the end of the line. Then the sequence of commands looks like this:
>> t = 5;
>> t = t+1
t =
6
If we enter an expression incorrectly, MATLAB will return an error message. For example,
in the following, we left out the multiplication sign, *, in the following expression
>> x = 10;
>> 5x
??? 5x
|
Error: Unexpected MATLAB expression.
To make corrections, we can, of course retype the expressions. But if the expression is
lengthy, we make more mistakes by typing a second time. A previously typed command
can be recalled with the up-arrow key ↑. When the command is displayed at the command
prompt, it can be modified if needed and executed.
Let’s consider the previous arithmetic operation, but now we will include parentheses. For
example, 1 + 2 × 3 will become (1 + 2) × 3
>> (1+2)*3
ans =
9
most computer programs. For operators of equal precedence, evaluation is from left to right.
Now, consider another example:
1 4 6
2
+ ×
2+3 5 7
In MATLAB, it becomes
>> 1/(2+3^2)+4/5*6/7
ans =
0.7766
>> 1/2+3^2+4/5*6/7
ans =
7
MATLAB by default displays only 4 decimals in the result of the calculations, for example
163.6667, as shown in above examples. However, MATLAB does numerical calculations
—
in double precision, which is 15 digits. The command format controls how the results of
computations are displayed. Here are some examples of the different formats together with
the resulting outputs.
>> x=-163.6667;
>> x
x =
-163.6667
The contents of the workspace persist between the executions of separate commands. There-
fore, it is possible for the results of one problem to have an effect on the next one. To
avoid this possibility, it is a good idea to issue a clear command at the start of each new
inde- pendent calculation.
The command clear or clear all removes all variables from the workspace. This
frees up system memory. In order to display a list of the variables currently in the memory,
type
>> who
while, whos will give more details which include size, space allocation, and class of the
variables.
It is possible to keep track of everything done during a MATLAB session with the diary
command.
>> diary
It is possible to enter multiple statements per line. Use commas (,) or semicolons (;) to
enter more than one statement at once. Commas (,) allow multiple statements per line
without suppressing output.
10
To view the online documentation, select MATLAB Help from Help menu or MATLAB Help
directly in the Command Window. The preferred method is to use the Help Browser. The
Help Browser can be started by selecting the ? icon from the desktop toolbar. On the other
hand, information about any command is available by typing
Another way to get help is to use the lookfor command. The lookfor command
differs from the help command. The help command searches for an exact function
name match, while the lookfor command searches the quick summary information in
each function for a match. For example, suppose that we were looking for a function to
take the inverse of a matrix. Since MATLAB does not have a function named inverse,
the command help inverse will produce nothing. On the other hand, the command
lookfor inverse will produce detailed information, which includes the function of interest,
inv.
NOTE - At this particular time of our study, it is important to emphasize one main
point. Because MATLAB is a huge program; it is impossible to cover all the details of each
function one by one. However, we will give you information how to get help. Here are some
examples:
• In the current version (MATLAB version 7), the doc function opens the on-line
version of the help manual. This is very helpful for more complex commands.
11
Tutorial lessons 2
12
2.1.1 Examples
We illustrate here some typical examples which related to the elementary functions previously
defined.
√
As a first example, the value of the expression y = e−a sin(x) + 10 y, for a = 5, x = 2, and
y = 8 is computed by
>> a = 5; x = 2; y = 8;
>> y = exp(-a)*sin(x)+10*sqrt(y)
y =
28.2904
>> log(142)
ans =
4.9558
>> log10(142)
ans =
2.1523
Note the difference between the natural logarithm log(x) and the decimal logarithm (base
10) log10(x).
To calculate sin(π/4) and e10, we enter the following commands in MATLAB,
>> sin(pi/4)
ans =
0.7071
>> exp(10)
ans =
2.2026e+004
13
• Only use built-in functions on the right hand side of an expression. Reassigning the
value to a built-in function can create problems.
√
• There are some exceptions. For example, i and j are pre-assigned to −1. However,
one or both of i or j are often used as loop indices.
• To avoid any possible confusion, it is suggested to use instead ii or jj as loop indices.
2.2.1 overview
MATLAB has an excellent set of graphic tools. Plotting a given data set or the results
of computation is possible with very few commands. You are highly encouraged to
plot mathematical functions and results of analysis as often as possible. Trying to
understand mathematical equations with graphics is an enjoyable and very efficient way of
learning math- ematics. Being able to plot mathematical functions and data freely is the
most important step, and this section is written to assist you to do just that.
The basic MATLAB graphing procedure, for example in 2D, is to take a vector of x-
coordinates, x = (x1, . . . , xN ), and a vector of y-coordinates, y = (y1, . . . , yN ), locate
the points (xi, yi), with i = 1, 2, . . . , n and then join them by straight lines. You need to
prepare x and y in an identical array form; namely, x and y are both row arrays or
column arrays of the same length.
The MATLAB command to plot a graph is plot(x,y). The vectors x = (1, 2, 3, 4, 5, 6)
and y = (3, −1, 2, 4, 5, 1) produce the picture shown in Figure 2.1.
>> x = [1 2 3 4 5 6];
>> y = [3 -1 2 4 5 1];
>> plot(x,y)
NOTE: The plot functions has different forms depending on the input arguments. If y is
a vector plot(y)produces a piecewise linear graph of the elements of y versus the index of the
elements of y. If we specify two vectors, as mentioned above, plot(x,y) produces a
graph of y versus x.
For example, to plot the function sin (x) on the interval [0, 2π], we first create a vector of
x values ranging from 0 to 2π, then compute the sine of these values, and finally plot the
result:
14
−1
1 2 3 4 5 6
>> x = 0:pi/100:2*pi;
>> y = sin(x);
>> plot(x,y)
NOTES:
MATLAB enables you to add axis labels and titles. For example, using the graph from
the previous example, add an x- and y-axis labels.
Now label the axes and add a title. The character \pi creates the symbol π. An
example of 2D plot is shown in Figure 2.2.
15
0.8
0.6
0.4
0.2
Sine of
0
x
−0.2
−0.4
−0.6
−0.8
−1
0 1 2 3 4 5 6 7
x = 0:2
The color of a single curve is, by default, blue, but other colors are possible. The desired
color is indicated by a third argument. For example, red is selected by plot(x,y,’r’). Note
the single quotes, ’ ’, around r.
Multiple (x, y) pairs arguments create multiple graphs with a single call to plot. For
example, these statements plot three related functions of x: y1 = 2 cos(x), y2 = cos(x),
and y3 =
0.5 ∗ cos(x), in the interval 0 ≤ x ≤ 2π.
>> x = 0:pi/100:2*pi;
>> y1 = 2*cos(x);
>> y2 = cos(x);
>> y3 = 0.5*cos(x);
>> plot(x,y1,’--’,x,y2,’-’,x,y3,’:’)
>> xlabel(’0 \leq x \leq 2\pi’)
>> ylabel(’Cosine functions’)
>> legend(’2*cos(x)’,’cos(x)’,’0.5*cos(x)’)
16
The result of multiple data sets in one graph plot is shown in Figure 2.3.
2*cos(x)
cos(x)
2
0.5*cos(x
)
1
functions
0
Cosine
−1
−2
−3
0 1 2 3 4 5 6
0 x 2
By default, MATLAB uses line style and color to distinguish the data sets plotted in
the graph. However, you can change the appearance of these graphic components or add
annotations to the graph to help explain your data for presentation.
It is possible to specify line styles, colors, and markers (e.g., circles, plus signs, . . . ) using
the plot command:
plot(x,y,’style_color_marker’)
17
A vector is a special case of a matrix. The purpose of this section is to show how to
create vectors and matrices in MATLAB. As discussed earlier, an array of dimension
× 1
n is called a row vector, whereas an array of ×
dimension m 1 is called a column vector.
The elements of vectors in MATLAB are enclosed by square brackets and are separated
by spaces or by commas. For example, to enter a row vector, v, type
>> v = [1 4 7 10 13]
v =
1 4 7 10 13
Column vectors are created in a similar way, however, semicolon (;) must separate the
components of a column vector,
>> w = [1;4;7;10;13]
w =
1
4
7
10
13
On the other hand, a row vector is converted to a column vector using the transpose operator.
The transpose operation is denoted by an apostrophe or a single quote (’).
19
Thus, v(1) is the first element of vector v, v(2) its second element, and so forth.
Furthermore, to access blocks of elements, we use MATLAB’s colon notation (:). For exam-
ple, to access the first three elements of v, we write,
>> v(1:3)
ans =
1 4 7
Or, all elements from the third through the last elements,
>> v(3,end)
ans =
7 10 13
where end signifies the last element in the vector. If v is a vector, writing
>> v(:)
>> v(1:end)
20
>> A = [1 2 3; 4 5 6; 7 8 9]
A =
1 2 3
4 5 6
7 8 9
Note that the use of semicolons (;) here is different from their use mentioned earlier to
suppress output or to write multiple commands in a single line.
Once we have entered the matrix, it is automatically stored and remembered in the
Workspace. We can refer to it simply as matrix A. We can then view a particular element in
a matrix by specifying its location. We write,
>> A(2,1)
ans =
4
A(2,1) is an element located in the second row and first column. Its value is 4.
We select elements in a matrix just as we did for vectors, but now we need two indices.
The element of row i and column j of the matrix A is denoted by A(i,j). Thus, A(i,j)
in MATLAB refers to the element Aij of matrix A. The first index is the row number and
the second index is the column number. For example, A(1,3) is an element of first row and
third column. Here, A(1,3)=3.
Correcting any entry is easy through indexing. Here we substitute A(3,3)=9 by
A(3,3)=0. The result is
>> A(3,3) = 0
A =
1 2 3
4 5 6
7 8 0
21
The colon operator will prove very useful and understanding how it works is the key to
efficient and convenient usage of MATLAB. It occurs in several different forms.
Often we must deal with matrices or vectors that are too large to enter one ele-
ment at a time. For example, suppose we want to enter a vector x consisting of points
(0, 0.1, 0.2, 0.3, · · · , 5). We can use the command
>> x = 0:0.1:5;
On the other hand, there is a command to generate linearly spaced vectors: linspace. It
is similar to the colon operator (:), but gives direct control over the number of points. For
example,
y = linspace(a,b)
generates a row vector y of 100 points linearly spaced between and including a and b.
y = linspace(a,b,n)
generates a row vector y of n points linearly spaced between and including a and b. This is
useful when we want to divide an interval into a number of subintervals of the same
length. For example,
divides the interval [0, 2π] into 100 equal subintervals, then creating a vector of 101 elements.
The colon operator can also be used to pick out a certain row or column. For example, the
statement A(m:n,k:l specifies rows m to n and column k to l. Subscript expressions refer
to portions of a matrix. For example,
22
>> A(:,2:3)
ans =
2 3
5 6
8 0
>> A(:,2)=[]
ans =
1 3
4 6
7 0
To extract a submatrix B consisting of rows 2 and 3 and columns 1 and 2 of the matrix A,
do the following
To interchange rows 1 and 2 of A, use the vector of row indices together with the colon
operator.
It is important to note that the colon operator (:) stands for all columns or all rows. To
create a vector version of matrix A, do the following
23
The keyword end, used in A(end,:), denotes the last index in the specified dimension.
Here are some examples.
>> A
A =
1 2 3
4 5 6
7 8 9
>> A(2:3,2:3)
ans =
5 6
8 9
>> A(end:-1:1,end)
ans =
9
6
3
24
>> A(3,:) = []
A =
1 2 3
4 5 6
Third row of matrix A is now deleted. To restore the third row, we use a technique for
creating a matrix
2.5.9 Dimension
To determine the dimensions of a matrix or vector, use the command size. For example,
>> size(A)
ans =
3 3
>> [m,n]=size(A)
25
If it is not possible to type the entire input on the same line, use consecutive periods, called
an ellipsis . . ., to signal continuation, then continue the input on the next line.
Note that blank spaces around +, −, = signs are optional, but they improve readability.
The transpose operation is denoted by an apostrophe or a single quote (’). It flips a matrix
about its main diagonal and it turns a row vector into a column vector. Thus,
>> A’
ans =
1 4 7
2 5 8
3 6 0
By using linear algebra notation, the transpose of m× n real matrix A is the n m matrix
that results from interchanging the rows and columns of A. The transpose matrix is
denoted AT .
Matrices can be made up of sub-matrices. Here is an example. First, let’s recall our
previous matrix A.
A =
1 2 3
4 5 6
7 8 9
26
MATLAB provides functions that generates elementary matrices. The matrix of zeros,
the matrix of ones, and the identity matrix are returned by the functions zeros, ones, and eye,
respectively.
For a complete list of elementary matrices and matrix manipulations, type help elmat
or doc elmat. Here are some examples:
1. >> b=ones(3,1)
b =
1
1
1
2. >> eye(3)
ans =
1 0 0
0 1 0
0 0 1
3. >> c=zeros(2,3)
c =
0 0 0
27
MATLAB provides a number of special matrices (see Table 2.5). These matrices have inter-
esting properties that make them useful for constructing examples and for testing algorithms.
For more information, see MATLAB documentation.
28
On the other hand, array arithmetic operations or array operations for short, are done
element-by-element. The period character, ., distinguishes the array operations from
the matrix operations. However, since the matrix and array operations are the same for
addition (+) and subtraction
− ( ), the character pairs (.+)−and (. ) are not used. The list of
array operators is shown below in Table 3.2. If A and B are two matrices of the same
size with elements A = [aij] and B = [bij], then the command
30
>> C = A.*B
produces another matrix C of the same size with elements cij = aijbij. For example, using
the same 3 × 3 matrices,
1 2 3 10 20 30
A =4 5 6, B = 40 50 60
7 8 70 80 90
9
we have,
>> C = A.*B
C =
10 40 90
160 250 360
490 640 810
To raise a scalar to a power, we use for example the command 10^2. If we want the
operation to be applied to each element of a matrix, we use .^2. For example, if we want
to produce a new matrix whose elements are the square of the elements of the matrix A,
we enter
>> A.^2
ans =
1 4 9
16 25 36
49 64 81
The relations below summarize the above operations. To simplify, let’s consider two
vectors U and V with elements U = [ui] and V = [vj].
31
Addition + +
Subtraction — —
Multiplication ∗ .
Division / ./
∗
Left division \ .\
Exponentiation ˆ .ˆ
x + 2y + 3z = 1
4x + 5y + 6z =
1
7x + 8y = 1
The coefficient matrix A is
1 2 3
A= 4 5 6 and the vector b = 11
7 8 9 1
Ax = b (3.2)
This equation can be solved for x using linear algebra. The result is x = A−1b.
There are typically two ways to solve for x in MATLAB:
32
2. The second one is to use the backslash (\ )operator. The numerical algorithm behind
this operator is computationally efficient. This is a numerically reliable way of solving
system of linear equations by using a well-known process of Gaussian elimination.
>> A = [1 2 3; 4 5 6; 7 8 0];
>> b = [1; 1; 1];
>> x = A\b
x =
-1.0000
1.0000
-0.0000
This problem is at the heart of many problems in scientific computation. Hence it is impor-
tant that we know how to solve this type of problem efficiently.
Now, we know how to solve a system of linear equations. In addition to this, we will
see some additional details which relate to this particular topic.
Calculating the inverse of A manually is probably not a pleasant work. Here the hand-
calculation of A−1 gives as a final result:
−16 8 −1
−1 1
A = 14 −7 2
9 −1 2 −1
33
>> det(A)
ans =
27
For further details on applied numerical linear algebra, see [10] and [11].
MATLAB provides many matrix functions for various matrix/vector manipulations; see
Table 3.3 for some of these functions. Use the online help of MATLAB to find how to use
these functions.
det Determinant
diag Diagonal matrices and diagonals of a matrix
eig Eigenvalues and eigenvectors
inv Matrix inverse
norm Matrix and vector norms
rank Number of linearly independent rows or columns
3.3 Exercises
NOTE: Due to the teaching class during this Fall Quarter 2005, the problems are temporarily
removed from this section.
34
Introduction to programming in
MATLAB
4.1 Introduction
So far in these lab sessions, all the commands were executed in the Command
Window. The problem is that the commands entered in the Command Window cannot
be saved and executed again for several times. Therefore, a different way of executing
repeatedly commands with MATLAB is:
If needed, corrections or changes can be made to the commands in the file. The files that
are used for this purpose are called script files or scripts for short.
This section covers the following topics:
• M-File Scripts
• M-File Functions
35
Example 1
A = [1 2 3; 3 3 4; 2 3 3];
b = [1; 1; 2];
x = A\b
>> example1
x =
-0.5000
1.5000
-0.5000
When execution completes, the variables (A, b, and x) remain in the workspace. To see a
listing of them, enter whos at the command prompt.
NOTE: The MATLAB editor is both a text editor specialized for creating M-files and a
graphical MATLAB debugger. The MATLAB editor has numerous menus for tasks such as
saving, viewing, and debugging. Because it performs some simple checks and also uses
color to differentiate between various elements of codes, this text editor is recommended
as the tool of choice for writing and editing M-files.
There is another way to open the editor:
36
or
to open filename.m.
Example 2
Plot the following cosine functions, y1 = 2 cos(x), y2 = cos(x), and y3 = ∗0.5 cos(x), in
the interval
≤ 0 x 2π. This example has been presented in previous Chapter. Here we
put the commands in a file.
x = 0:pi/100:2*pi;
y1 = 2*cos(x);
y2 = cos(x);
y3 = 0.5*cos(x);
plot(x,y1,’--’,x,y2,’-’,x,y3,’:’)
xlabel(’0 \leq x \leq 2\pi’)
ylabel(’Cosine functions’)
legend(’2*cos(x)’,’cos(x)’,’0.5*cos(x)’)
title(’Typical example of multiple plots’)
axis([0 2*pi -3 3])
All variables created in a script file are added to the workspace. This may have undesirable
effects, because:
37
f = prod(1:n); (4)
The first line of a function M-file starts with the keyword function. It gives the
function name and order of arguments. In the case of function factorial, there are up to one
output argument and one input argument. Table 4.1 summarizes the M-file function.
As an example, for n = 5, the result is,
>> f = factorial(5)
f =
120
Both functions and scripts can have all of these parts, except for the function
definition line which applies to function only.
38
39
As mentioned above, the input arguments are listed inside parentheses following the function
name. The output arguments are listed inside the brackets on the left side. They are used
to transfer the output from the function file. The general form looks like this
Function file can have none, one, or several output arguments. Table 4.3 illustrates some
possible combinations of input and output arguments.
We have already seen the two first cases. Here, we will focus our attention on the third one.
In this case, the variable is defined in the script file. When the file is executed, the user
is prompted to assign a value to the variable in the command prompt. This is done by
using the input command. Here is an example.
40
The following shows the command prompt when this script file (saved as example3) is
executed.
>> example3
>> Enter the points scored in the first game 15
>> Enter the points scored in the second game 23
>> Enter the points scored in the third game 10
average =
16
The input command can also be used to assign string to a variable. For more
information, see MATLAB documentation.
A typical example of M-file function programming can be found in a recent paper
which related to the solution of the ordinary differential equation (ODE) [12].
41
5.1 Introduction
MATLAB is also a programming language. Like other computer programming
languages, MATLAB has some decision making structures for control of command
execution. These decision making or control flow structures include for loops, while
loops, and if-else-end constructions. Control flow structures are often used in script M-
files and function M-files.
By creating a file with the extension .m, we can easily write and run programs. We
do not need to compile the program since MATLAB is an interpretative (not compiled)
language. MATLAB has thousand of functions, and you can add your own using m-files.
MATLAB provides several tools that can be used to control the flow of a program
(script or function). In a simple program as shown in the previous Chapter, the commands
are executed one after the other. Here we introduce the flow control structure that make
possible to skip commands or to execute specific group of commands.
• if ... end
• if ... else ... end
43
if expression
statements
end
44
Note that the “equal to” relational operator consists of two equal signs (==) (with no space
between them), since = is reserved for the assignment operator.
Usually, expression is a vector of the form i:s:j. A simple example of for loop is
for ii=1:5
x=ii*ii
end
It is a good idea to indent the loops for readability, especially when they are nested. Note
that MATLAB editor does it automatically.
Multiple for loops can be nested, in which case indentation helps to improve the
readability. The following statements form the 5-by-5 symmetric matrix A with (i, j) element
i/j for j ≥ i:
45
while expression
statements
end
x = 1
while x <= 10
x = 3*x
end
It is important to note that if the condition inside the looping is not well defined, the
looping will continue indefinitely. If this happens, we can stop the execution by pressing
Ctrl-C.
• The break statement. A while loop can be terminated with the break statement,
which passes control to the first statement after the corresponding end. The break
statement can also be used to exit a for loop.
• The continue statement can also be used to exit a for loop to pass immediately to
the next iteration of the loop, skipping the remaining statements in the loop.
• Other control statements include return, continue, switch, etc. For more detail
about these commands, consul MATLAB documentation.
46
We can build expressions that use any combination of arithmetic, relational, and
logical operators. Precedence rules determine the order in which MATLAB evaluates an
expression. We have already seen this in the “Tutorial Lessons”.
Here we add other operators in the list. The precedence rules for MATLAB are shown
in this list (Table 5.2), ordered from highest (1) to lowest (9) precedence level.
Operators are evaluated from left to right.
1 Parentheses ()
2 Transpose (. ′), power (.ˆ), matrix power (ˆ)
3 Unary plus (+), unary minus (−), logical negation (∼)
4 Multiplication (. ∗), right division (. /), left division
(.\), matrix multiplication (∗), matrix right division (/),
matrix left division (\)
47
Debugging M-
files
6.1 Introduction
This section introduces general techniques for finding errors in M-files. Debugging is the
process by which you isolate and fix errors in your program or code.
Debugging helps to correct two kind of errors:
• Run-time errors - Run-time errors are usually apparent and difficult to track
down. They produce unexpected results.
50
Here we use the Editor/Debugger for debugging. Do the following to prepare for debugging:
• Be sure the file you run and any files it calls are in the directories that are on the
search path.
Set breakpoints to pause execution of the function, so we can examine where the problem
might be. There are three basic types of breakpoints:
• An error breakpoint that stops when it produces the specified type of warning, error,
NaN, or infinite value.
You cannot set breakpoints while MATLAB is busy, for example, running an M-file.
After setting breakpoints, run the M-file from the Editor/Debugger or from the Command
Window. Running the M-file results in the following:
K>>
• The program pauses at the first breakpoint. This means that line will be executed
when you continue. The pause is indicated by the green arrow.
• In breakpoint, we can examine variable, step through programs, and run other calling
functions.
51
While the program is paused, we can view the value of any variable currently in the
workspace. Examine values when we want to see whether a line of code has produced
the expected result or not. If the result is as expected, step to the next line, and continue
running. If the result is not as expected, then that line, or the previous line, contains an
error. When we run a program, the current workspace is shown in the Stack field. Use
who or whos to list the variables in the current workspace.
First, we position the cursor to the left of a variable on that line. Its current value appears.
This is called a datatip, which is like a tooltip for data. If you have trouble getting the
datatip to appear, click in the line and then move the cursor next to the variable.
While debugging, we can change the value of a variable to see if the new value produces
expected results. While the program is paused, assign a new value to the variable in the
Com- mand Window, Workspace browser, or Array Editor. Then continue running and
stepping through the program.
After identifying a problem, end the debugging session. It is best to quit debug mode before
editing an M-file. Otherwise, you can get unexpected results when you run the file. To end
debugging, select Exit Debug Mode from the Debug menu.
• Quit debugging
• Do not make changes to an M-file while MATLAB is in debug mode
• Make changes to the M-file
• Save the M-file
• Clear breakpoints
52
53
Summary of commands
54
55
56
57
58