Matlab
Matlab
Matlab
A MATLAB Tutorial
Ed Overman
Department of Mathematics
The Ohio State University
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3
1 Scalar Calculations . . . . . . . . . . . . . . . . . . . . . . 6
1.1 Simple Arithmetical Operations . . . . . . . . . . . . . . . . . 6
1.2 Variables . . . . . . . . . . . . . . . . . . . . . . . . 7
1.3 Round-off Errors . . . . . . . . . . . . . . . . . . . . . . 9
1.4 Formatting Printing . . . . . . . . . . . . . . . . . . . . . 10
1.5 Common Mathematical Functions . . . . . . . . . . . . . . . . . 11
1.6 Complex Numbers . . . . . . . . . . . . . . . . . . . . . . 13
1.7 Script M-files . . . . . . . . . . . . . . . . . . . . . . . 13
1.8 Help! . . . . . . . . . . . . . . . . . . . . . . . . . . 14
1.9 Be Able To Do . . . . . . . . . . . . . . . . . . . . . . . 16
2 Arrays: Vector and Matrix Calculations . . . . . . . . . . . . . . . 16
2.1 Generating Matrices . . . . . . . . . . . . . . . . . . . . . 17
2.2 The Colon Operator . . . . . . . . . . . . . . . . . . . . . 21
2.3 Manipulating Matrices . . . . . . . . . . . . . . . . . . . . 21
2.4 Simple Arithmetical Operations . . . . . . . . . . . . . . . . . 25
2.5 Operator Precedence . . . . . . . . . . . . . . . . . . . . . 29
2.6 Be Careful! . . . . . . . . . . . . . . . . . . . . . . . . 29
2.7 Common Mathematical Functions . . . . . . . . . . . . . . . . . 31
2.8 Data Manipulation Commands . . . . . . . . . . . . . . . . . . 32
2.9 Advanced Topic: Multidimensional Arrays . . . . . . . . . . . . . . 34
2.10 Be Able To Do . . . . . . . . . . . . . . . . . . . . . . 35
3 Anonymous Functions, Strings, and Other Data Types . . . . . . . . . . 36
3.1 Anonymous Functions . . . . . . . . . . . . . . . . . . . . 37
3.2 Passing Functions as Arguments to Commands . . . . . . . . . . . . . 38
3.3 Strings . . . . . . . . . . . . . . . . . . . . . . . . . 39
3.4 Advanced Topic: Cell Arrays and Structures . . . . . . . . . . . . . . 40
4 Graphics . . . . . . . . . . . . . . . . . . . . . . . . . 42
4.1 Two-Dimensional Graphics . . . . . . . . . . . . . . . . . . . 43
4.2 Three-Dimensional Graphics . . . . . . . . . . . . . . . . . . 49
4.3 Advanced Graphics Techniques: Commands . . . . . . . . . . . . . . 51
4.4 Advanced Graphics Techniques: Handles and Properties . . . . . . . . . . 55
4.5 Be Able To Do . . . . . . . . . . . . . . . . . . . . . . . 56
5 Solving Linear Systems of Equations . . . . . . . . . . . . . . . . 57
5.1 Square Linear Systems . . . . . . . . . . . . . . . . . . . . 57
5.2 Catastrophic Round-Off Errors . . . . . . . . . . . . . . . . . . 60
5.3 Overdetermined and Underdetermined Linear Systems . . . . . . . . . . . 61
6 File Input-Output . . . . . . . . . . . . . . . . . . . . . . 63
7 Some Useful Linear Algebra Commands . . . . . . . . . . . . . . . 65
8 Programming in MATLAB . . . . . . . . . . . . . . . . . . . 71
8.1 Flow Control and Logical Variables . . . . . . . . . . . . . . . . 71
8.2 Matrix Relational Operators and Logical Operators . . . . . . . . . . . . 75
8.3 Function M-files . . . . . . . . . . . . . . . . . . . . . . 79
8.4 Odds and Ends . . . . . . . . . . . . . . . . . . . . . . 88
8.5 Advanced Topic: Vectorizing Code . . . . . . . . . . . . . . . . . 90
9 Sparse Matrices . . . . . . . . . . . . . . . . . . . . . . . 92
10 Initial-Value Ordinary Differential Equations . . . . . . . . . . . . . 95
10.1 Basic Commands . . . . . . . . . . . . . . . . . . . . . . 95
10.2 Advanced Commands . . . . . . . . . . . . . . . . . . . . 100
11 Boundary-Value Ordinary Differential Equations . . . . . . . . . . . 106
12 Polynomials and Polynomial Functions . . . . . . . . . . . . . . . 110
13 Numerical Operations on Functions . . . . . . . . . . . . . . . . 112
14 Discrete Fourier Transform . . . . . . . . . . . . . . . . . . . 115
15 Mathematical Functions Applied to Matrices . . . . . . . . . . . . . 122
Appendix: Reference Tables . . . . . . . . . . . . . . . . . . . . 125
Solutions To Exercises . . . . . . . . . . . . . . . . . . . . . . 137
ASCII Table . . . . . . . . . . . . . . . . . . . . . . . . . 139
Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
2
Introduction
MATLAB is an interactive software package which was developed to perform numerical calculations
on vectors and matrices. Initially, it was simply a MATrix LABoratory. However, today it is much more
powerful:
• It can do quite sophisticated graphics in two and three dimensions.
• It contains a high-level programming language (a “baby C”) which makes it quite easy to code com-
plicated algorithms involving vectors and matrices.
• It can numerically solve nonlinear initial-value ordinary differential equations.
• It can numerically solve nonlinear boundary-value ordinary differential equations.
• It contains a wide variety of toolboxes which allow it to perform a wide range of applications from sci-
ence and engineering. Since users can write their own toolboxes, the breadth of applications is quite
amazing.
Mathematics is the basic building block of science and engineering, and MATLAB makes it easy to handle
many of the computations involved. You should not think of MATLAB as another complication program-
ming language, but as a powerful calculator that gives you fingertip access to exploring interesting prob-
lems in science, engineering, and mathematics. And this access is available by using only a small number
of commands and function† because MATLAB’s basic data element is a matrix (or an array).
This is a crucial feature of MATLAB — it was designed to group large amounts of data in arrays and
to perform mathematical operations on this data as individual arrays rather than as groups of data. This
makes it very easy to apply complicated operations to the data, and it make it very difficult to do it
wrong. In high-level computer languages you would usually have to work on each piece of data separately
and use loops to cycle over all the pieces. In MATLAB this can frequently do complicated “things” in
one, or a few, statements (and no loops). In addition, in a high-level language many mathematical op-
erations require the use of sophisticated software packages, which you have to find and, much worse, to
understand since the interfaces to these packages are frequently quite complicated and the documentation
must be read and mastered. In MATLAB, on the other hand, these operations have simple and consistent
interfaces which are quite easy to master. For an overview of the capabilities of MATLAB, type
>> demo
in the Help Navigator and click on MATLAB.
This tutorial is designed to be a concise introduction to many of the capabilities of MATLAB. It makes
no attempt to cover either the range of topics or the depth of detail that you can find in a reference man-
ual, such as Mastering MATLAB 7 by Duane Hanselman and Bruce Littlefield (which is over 850 pages
long) or MATLAB Guide, 2nd edition by Desmond and Nicholas Higham (which is almost 400 pages long).
This tutorial was initially written to provide students with a free “basic” overview of commands which
are useful in an undergraduate course on linear algebra. Over the years it has grown to include courses in
ordinary differential equations, mathematical modelling, and numerical analysis. It also includes an intro-
duction to two- and three-dimensional graphics because graphics is often the preferred way to present the
results of calculations.
In this tutorial MATLAB is first introduced as a calculator and then as a plotting package. Only after-
wards are more technical topics discussed. We take this approach because most people are quite familiar
with calculators, and it is only a small step to understand how to apply these same techniques to matrices
rather than individual numbers or varibles. In addition, by viewing MATLAB as a simple but powerful
calculater, rather than as a complicated software package or computer language, you will be in the correct
frame of mind to use MATLAB.
You should view MATLAB as a tool that you are “playing with” — trying ideas out and seeing how
†
There is a technical distinction between a command and a function in MATLAB: input arguments to com-
mands are not enclosed in parentheses (they are separated by spaces) and there are no output arguments (i.e., a
command cannot be on the right-hand side of an equal sign). In reality, this is a very fine distinction since many
commands can be written as functions by putting the arguments between parentheses and separating them with
commas. We will generally use the term functions unless there is a reason to make a distinction.
3
they work. If an idea works, fine; if it doesn’t, investigate further and figure out why. Maybe you mis-
understood some MATLAB command, or maybe your idea needs some refinement. “Play around” in-
teractively and figure it out. There are no hard and fast rules for figuring it out — try things and see
what happens. Don’t be afraid to make mistakes; MATLAB won’t call you an idiot for making a mistake.
When you first learned to ride a bicycle, you fell down a lot — and you looked pretty silly. But you kept
at it until you didn’t fall down. You didn’t study Newton’s laws of motion and try to analyze the motion
of a bicycle; you didn’t take classes in how to ride a bicycle; you didn’t get videos from the library on how
to ride a bicycle. You just kept at it, possibly with the assistance of someone who steadied the bicycle and
gave you a little push to get you started. This is how you should learn MATLAB.
However, this tutorial is not designed for “playing around”. It is very ordered, because it has been de-
signed as a brief introduction to all the basic topics that I consider important and then as a reference
manual. It would be very useful for students to have a document which uses this “play around” approach
so you would learn topics by using them in exploring some exercise. This is how workbooks should be
written: present some exercise for students to investigate, and let them investigate it themselves. And
these exercises should be interesting, having some connection to physical or mathematical models that
the students — or at least a reasonable fraction thereof — have some knowledge of and some interest in.
This tutorial is designed to be a reference manual that could be used alongside such a workbook — if only
someone would write it.
Summary of Contents
We have tried to make this tutorial as linear as possible so that the building blocks necessary for a sec-
tion are contained in preceding sections. This is not the best way to learn MATLAB, but it is a good way
to document it. In addition, we try to separate these building blocks and put them in short subsections so
that they are are easy to find and to understand. Next, we collect all the commands discussed in a sub-
section and put them in a box at the end along with a very brief discussion to make it easy to remember
these commands. Finally, we collect all these commands and put them in the appendix again boxed up by
topic. MATLAB has a HUGE number of commands and functions and this is one way to collect them
for easy reference.
Warning: Usually we do not dis
uss the
omplete behavior of these
ommands, but only their most \use-
ful" behavior. Typing
>> help <command>
or
>> doc <command>
gives you
omplete information about the
ommand.
Notation: help <command> means to enter whatever command you desire (without the braces).
help command means to type these two words as written.
Section 1 of this tutorial discusses how to use MATLAB as a “scalar” calculator, and section 2 how to
use it as a “matrix” calculator. Following this, you will be able to set up and solve the matrix equation
Ax = b where A is a square nonsingular matrix.
Section 4 discusses how to plot curves in two and three dimensions and how to plot surfaces in three di-
mensions. These three sections provide a “basic” introduction to MATLAB. At the end of each of these
three sections there is a subsection entitled “Be Able To Do” which contains sample exercises to make sure
you understand the basic commands discussed. (Solutions are included.)
You have hopefully noticed that we skipped section 3. It discusses a number of minor topics. Since they
are useful in generating two- and three-dimensional plots, we have included it here.
The following sections delve more deeply into particular topics. Section 5 discusses how to find any and
all solutions of Ax = b where A ∈ Cm×n need not be a square matrix; there might be no solutions, one
solution, or an infinite number to this linear system. When no solution exists, it discusses how to calcu-
late a least-squares solution (i.e., the “best” approximation to a solution). In addition, it discusses how
round-off errors can corrupt the solution, and how to determine if this is likely to occur.
Section 6 is quite brief and discusses advanced commands to input data into MATLAB and output it
to a file. (The basic commands are discussed in subsection 4.1.) This is useful if the data is being shared
4
between various computer programs and/or software packages.
Section 7 discusses a number of commands which are useful in linear algebra and numerical linear alge-
bra. Probably the most useful of these is calculating some or all of the eigenvalues of a square matrix.
Section 8 discusses MATLAB as a programming language — a very “baby C”. Since the basic data ele-
ment of MATLAB is a matrix, this programming language is very simple to learn and to use. Most of this
discussion focuses on writing your own MATLAB commands, called function m-files (which are similar to
functions in C and to functions, more generally subprograms, in Fortran). Using these functions, you can
code a complicated sequence of statements such that all these statements as well as all the the variables
used by these commands are hidden and will not affect the remainder of your MATLAB session. The only
way to pass data into and out of these functions is through the argument list.
Section 9 discusses how to generate sparse matrices (i.e., matrices where most of the elements are zero).
These matrices could have been discussed in section 2, but we felt that it added too much complexity at
too early a point in this tutorial. Unless the matrix is very large it is usually not worthwhile to gener-
ate sparse matrices — however, when it is worthwhile the time and storage saved can be boundless.
Section 10 discusses how to use MATLAB to numerically solve initial-value ordinary differential equa-
tions. This section is divided up into a “basic” part and an “advanced” part. It often requires very little
effort to solve even complicated odes; when it does we discuss in detail what to do and provide a num-
ber of examples. Section 11 discusses how to use MATLAB to numerically solve boundary-value ordinary
differential equations.
Section 12 discusses how to numerically handle standard polynomial calculations such as evaluating
polynomials, differentiating polynomials, and finding their zeroes. Polynomials and piecewise polynomials
can also be used to interpolate data.
Section 13 discusses how to numerically calculate zeroes, extrema, and integrals of functions.
Section 14 discusses the discrete Fourier transform and shows how it arises from the continuous Fourier
transform. We also provide an example which shows how to recover a simple signal which has been
severely corrupted by noise.
Finally, section 15 discusses how to apply mathematical functions to matrices.
There is one appendix which collects all the commands discussed in this tutorial and boxes them up by
topic. If a command has more than one use, it might occur in two or more boxes.
This tutorial closes with an index. It is designed to help in finding things that are “just on the tip of
your tongue”. All the MATLAB commands discussed here are listed at the beginning of the index, as well
as alphabetically throughout the index.
Notation: A variable, such as x, can represent any number of types of data, but usually it represents a
scalar, a vector, or a matrix. We distinguish them by using the lowercase x when it is a scalar
or a vector, and the uppercase X when it is a matrix. Also, in MATLAB vectors can be either
row vectors, e.g., (1, 2, 3) or column vectors (1, 2, 3)T (where “ T ” is the transpose of a vec-
tor or matrix). In a linear algebra setting we always define x to be a column vector. Thus,
for example, matrix-vector multiplication is always written as A ∗ x and the inner product of
the two vectors x and y is x′ *y, i.e., x1 y1 + x2 y2 + . . . + xn yn (where “ ′ ” is the MATLAB
command to take the transpose of a real vector or matrix.
5
1. Scalar Calculations
1.1. Simple Arithmetical Operations
MATLAB can be used as a scientific calculator. To begin a MATLAB session, type matlab or click
on a MATLAB icon and wait for the prompt, i.e., “ >> ”, to appear. (To exit MATLAB, type exit or
quit.) You are now in the MATLAB workspace.
You can calculate 3.17 · 5.7 + 17/3 by entering
>> 3.17*5.7 + 17/3
and 220 by entering
>> 2 20
And
P12 ˆ
j=1 1/j can be entered as
>> 1 + 1/2 + 1/3 + 1/4 + 1/5 + 1/6 + 1/7 + 1/8 + 1/9 + 1/10 + 1/11 + 1/12
You can enter a number in scientific notation using the “ ” operator. For example, you can enter
2×10−20 by
ˆ
>> 2*10 -20
ˆ
MATLAB, however, uses “e” to represent “10 ” so that MATLAB displays
2.0000e-20
ˆ
The “standard” way to input 2×10−20 is as 2e-20 or 2E-20 or 2.e-20 or 2.E-20 (even
2.0000000e-00020 is acceptable).
Warning: 10−20 cannot be input as e-20, but must be input as 1e-20 or 1E-20 or 1.e-20 or 1.E-20
or . . . √
MATLAB can also handle complex numbers, where i or j represents −1 . For example, 5i can be
input as 5i or as 5*i, while 5×1030 i can be input as 5e30i or as 5e30*i or as 5*10 30*i, but not
as 5*10 30i (which MATLAB considers to be 5×1030i ). To calculate (2 + 2i)4 , enter ˆ
ˆ
>> (2 + 2i) 4
ˆ
and MATLAB returns −64.
You can also save all of your input to MATLAB and most of the output (plots are not saved) by using
the diary command. This archive of your work can be invaluable when you are solving homework prob-
lems. You can later use an editor to extract the part you want to turn in, while “burying” all the false
starts and typing mistakes that occur. Conversely, if you are involved in a continuing project, this archive
can be invaluable in keeping a record of your progress.
If you do not specify a file, this archive is saved to the file diary (no extension) in the present direc-
tory. If the file already exists, this is appended to the end of the file (i.e., the file is not overwritten).
Because of this feature you can use the diary command without fear that crucial work will be overwrit-
ten.
If you are entering a line and make a mistake, there are a number of ways you can correct your error:
• you can use the backspace or delete key to erase all the text back to your mistake,
• you can use the left-arrow key, i.e., “ ←”, and the right-arrow key, i.e., “ →”, to move back and forth
in the line, or
• you can use the mouse to move back and forth in the line.
Frequently, you will want to reexecute the previous line, or another previous line. For example, you
might have made a mistake in the previous line and so it did not execute, or did not execute correctly.
Of course, you can just retype the line — but, if it is very long, this can get very time-consuming. Instead,
you can use the up-arrow key, i.e., “ ↑”, to move backward, one statement at a time (or the down-arrow
key, i.e., ↓” to move forward). Then hit the enter (or the return) key to execute the line.
6
1.2. Variables
Arithmetical Operations
↑ The up-arrow key moves backward in the MATLAB workspace, one line at a time.
1.2. Variables
7
1.2. Variables
be declared (or typed). A variable springs into existence the first time it is assigned a value, and its type
depends on its context.
At start-up time, MATLAB also contains some predefined variables. Many of these are contained in the
table below. Probably the most useful of these is pi.
Warning: Be careful since you can redefine these predefined variables. For example, if you type
>> pi = 2
then you have redefined π — and no error messages will be printed out!
Another very useful predefined variable is ans, which contains the last calculated value which was not
stored in a variable. For example, it sometimes happens that you forget to put a value into a variable.
Then MATLAB sets the expression equal to the variable ans. For example, if you type
>> (3.2*17.5 - 5/3.1) 2
ˆ
but then realize that you wanted to save this value, simply enter
>> x = ans
and x now contains (3.2 · 17.5 − 5/3.1)2 .
In MATLAB it is trivial to display a variable: simply type it. For example, if x has the value −23.6
then
>> x
returns
x =
-23.6000
It is sometimes useful to display the value of a variable or an expression or a character string without
displaying the name of the variable or ans. This is done by using disp. For example,
>> disp(x)
>> disp(pi 3)
ˆ
>> disp(′ And now for something completely different′)
>> disp(′ ------------------------------------------′)
displays
-23.6000
31.0063
8
1.3. Round-off Errors
Predefined Variables
ans The default variable name when one has not been specified.
pi π.
eps Approximately the smallest positive real number on the computer such that
1 + eps 6= 1 .
Inf ∞ (as in 1/0 ). You can also type inf.
NaN Not-a-Number (as in 0/0 ). You can also type nan.
√
i √−1 .
j −1 (the same as i because engineers often use these interchangeably).
realmin The smallest “usable” positive real number on the computer. This is “approximately”
the smallest positive real number that can be represented on the computer (on some
computer realmin/2 returns 0 ).
realmax The largest “usable” positive real number on the computer. This is “approximately” the
largest positive real number that can be represented on the computer (on most computer
2*realmax returns Inf ).
About Variables
9
1.4. Formatting Printing
>> (1 + 1.e-40) - 1
MATLAB returns 0 rather than 1.e-40. The smallest positive integer n for which
>> (1 + 10 (-n)) - 1
ˆ
returns 0 is computer dependent. (On our computer it is 16.) What is not computer dependent is that
this leads to errors in numerical calculations. For example, when we enter
>> n = 5; ( n (1/3) ) 3 - n
ˆ ˆ
MATLAB returns -1.7764e-15 rather than the correct result of 0. If you obtain 0, try some different
values of n. You should be able to rerun the last statement executed without having to retype it by us-
ing the up-arrow key. Alternatively, on a Mac or a PC use the copy command in the menu; in Unix enter
p.
ˆ
Note: It might not seem important that MATLAB does not do arithmetical operations pre
isely. However,
you will see in subsection 5.2 that there are simple examples where this can lead to very incorrect
results.
One command which is occasionally useful when you are just “playing around” is the input command,
which displays a prompt on the screen and waits for you to enter some input from the keyboard. For ex-
3
ample, if you want to try some different values of n in experimenting with the expression (n1/3 ) − n,
enter
>> n = input(′n = ′ ); ( n (1/3) ) 3 - n
ˆ ˆ
The argument to the command input is the string which prompts you for input, and the input is stored
in the variable n; the semicolon keeps the result of this command from being printed out. You can easily
rerun this line for different values of n (as we described above) and explore how round-off errors can affect
simple expressions.
Warning: eps and realmin are very different numbers. realmin is approximately the smallest positive
number that can be represented on the computer, whereas eps is approximately the small-
est positive number on the computer such that 1 + eps 6= 1. ( eps/realmin is larger than the
total number of atoms in the known universe.)
Request Input
input(′<prompt>′) Displays the prompt on the screen and waits for you to enter whatever is
desired.
10
1.5. Common Mathematical Functions
Format Options
11
1.5. Common Mathematical Functions
by mistake (possibly you meant bin = 20 but were thinking about something else). If you now
type
>> sin(3)
MATLAB will reply
??? Index exceeds matrix dimensions.
because it recognizes that sin is a variable. Since MATLAB considers a variable to be a vector
of length one, its complaint is that you are asking for the value of the third element of the vec-
tor sin (which only has one element). Similarly, if you enter
>> sin(.25*pi)
MATLAB will reply
Warning: Subscript indices must be integer values.
because it thinks you are asking for the .25π-th element of the vector sin. The way to undo
your mistake is by typing
>> clear sin
12
1.7. Script M-files
Similarly,
eiz + e−iz eiz − e−iz
cos z = and sin z = .
2 2i
†
If a is a complex number, then its complex conjugate, denoted by a∗ is obtained by changing the sign of i
whenever it appears in the expression for a. √For example, if a = 3 + 17i, then a∗ = 3√− 17i; if a = eiπ/4 , then
a∗ = e−iπ/4 ; if a = (2 + 3i) sin(1 + 3i)/(3 − 5 i), then a∗ = (2 − 3i) sin(1 − 3i)/(3 + 5 i).
13
1.8. Help!
<file name> the contents of the file “ <file name>.m” are executed just as if you had typed them into
into the text window. We will not emphasize script m-files further, but you will find many occasions where
they are very helpful.
However, there is one point we need to emphasize. Make sure your file name is not the same as
one of MATLAB's commands or functions. If it is, your file will not execute — MATLAB’s will! To
check this, you can enter
>> type <file name>
which types out the entire file file name.m if it is written in MATLAB and types out
<file name> is a built-in function.
(A built-in function is written in C or Fortran and so cannot be viewed directly.) It your file is typed out,
fine; if not, change the name of your file.
A long expression can be continued to a new line by typing three periods followed by the “enter (or
P20
“return”) key. For example, j=1 1/j can be entered as
>> 1 + 1/2 + 1/3 + 1/4 + 1/5 + 1/6 + 1/7 + 1/8 + 1/9 + 1/10 + 1/11 + 1/12 + ...
1/13 + 1/14 + 1/15 + 1/16 + 1/17 + 1/18 + 1/19 + 1/20
although there are much better ways to obtain this same expression with many fewer keystrokes (as you
will see in subsection 2.8). Lines can also be continued in the MATLAB workspace by using three periods,
but it is much more common to use continuation in an m-file.
If your m-file is very long, it is often valuable to include comments to explain what you are doing. Each
line of comments must begin with the percent character, i.e., “%”. Comments can appear alone on a line
or they can follow a statement that you have entered.
Note: By the way, comment lines are particularly useful if you write a number of script m-files. It is very
easy to forget what this file is supposed to be doing.
type Displays the actual MATLAB code for a command or function or m-file
... Continue an expression onto the next line.
% Begin a comment
1.8. Help!
Before discussing how to obtain help in MATLAB, here is a good place to discuss a very frustrating
situation where you desperately need help: how do you abort a MATLAB statement which is presently
executing. The answer is simply to type C (that is, hold down the control key and type “c”).
ˆ
The on-line help facility in MATLAB is quite extensive. If you type
>> help
you will get a list of all the topics that you can peruse further by typing help followed by the name of
the topic. If you want help on a specific command, simply type help followed by the name of the com-
mand, i.e.,
help <command>
For example, if you forget the exact form of the format command, just type
>> help format
and you will see all the various ways that the output can be formatted.
Note: Typing
>> help ?
gives you lots of information about arithmetical and relational and logical operators and special
characters.
There is a more general command that can help you determine which commands might be of use. The
command lookfor searches through the first line of all MATLAB help entries for a particular keyword.
It is case insensitive so capital letters need not be used. For example,
14
1.8. Help!
†
These variables are saved in binary format; when loaded back in using load the variables will be exactly the
same as before. The contents of this file can be viewed by the user with an editor — but the contents will appear
to be gibberish. The contents can only be interpreted by the load command.
15
2. Arrays: Vector and Matrix Calculations
Getting Help
1.9. Be Able To Do
After reading this section you should be able to do the following exercises. The MATLAB statements
are given on page 137.
1. Consider a triangle with sides a, b, and c and corresponding angles ∠ab, ∠ac, and ∠bc.
(a) Use the law of cosines, i.e.,
c2 = a2 + b2 − 2ab cos ∠ab ,
to calculate c if a = 3.7, b = 5.7, and ∠ab = 79◦ .
(b) Then show c to its full accuracy.
(c) Use the law of sines, i.e.,
sin ∠ab sin ∠ac
= ,
c b
to calculate ∠ac in degrees and show it in scientific notation.
(d) What MATLAB command should you have used first if you wanted to save these results to the file
triangle.ans?
√
2. Calculate 3 1.2×1020 − 1220 i.
3. Analytically, cos 2θ = 2 cos2 θ − 1. Check whether this is also true numerically when using MATLAB by
using a number of different values of θ. Use MATLAB statements which make it as easy as possible to do
this.
4. How would you find out information about the fix command?
This makes it much easier to understand MATLAB operations. This is also a good practice
for you to use.
In addition, when we write “vector” we mean a column vector and so it is immediately obvious
that A*x is a legitimate operation of a matrix times a vector as long as the number of rows of
the matrix A equals the number of columns of the column vector x. Also, x*A is illegitimate
because the column vector x has only one column while the matrix A is expected to have more
than one row. On the other hand, x′ A is legitimate ( x′ denotes the conjugate transpose of the
vector x ) as long as the row vector x′ has the same number of columns as the number of rows
of the matrix A.
In addition, we have very specific notation for denoting vectors and matrices and the elements of each.
We collect all this notation here.
Notation: Rm denotes all real column vectors with m elements and Cm denotes all complex column vec-
tors with m elements.
Rm×n denotes all real m×n matrices (i.e., having m rows and n columns) and Cm×n de-
notes all complex m×n matrices.
Notation: In this overview the word “vector” means a column vector so that Cm = Cm×1 . Vectors are de-
noted by boldface letters, such as x; we will write a row vector as, for example, xT , where T
denotes the transpose of a matrix or vector (that is, the rows and columns are reversed.)
Notation: A = (aij ) means that the (i, j)-th element of A (i.e., the element in the i-th row and the j-th
column) is aij .
x = (xi ) means that the i-th element of x is xi .
By the way MATLAB works with complex matrices as well as it does real matrices. To remind you of
this fact, we will use C rather than R unless there is a specific reason not to. If there is a distinction be-
tween the real and complex case, we will first describe the real case and then follow with the complex case
in parentheses.
17
2.1. Generating Matrices
can be entered as
>> x = [1; 2; 3; 4; 5; 6]
However, this requires many semicolons; instead, take the transpose of a row vector by entering
>> x = [1 2 3 4 5 6].′
where the MATLAB command for the transpose, i.e., “ T ”, is “ .′ ” (i.e., a period followed by a single
quote mark). There is one further simplification that is usually observed when entering a vector. The
MATLAB command for the conjugate transpose, i.e., “ H ”, of a matrix is “ ′ ” (i.e., just a single quote
mark), which requires one less character than the command for the transpose. Thus, x is usually entered
as
>> x = [1 2 3 4 5 6]′
Aside: In fact, x should be entered as
>> x = [1:6]′
since this requires much less typing. (We will discuss the colon operator shortly.)
Warning: xT → x.′ while xH → x′ so that you
an only
al
ulate xT by x′ if x is real. This has
bitten us occasionally!
Sometimes the elements of a matrix are complicated enough that you will want to simplify the process
p √ √ √ p T
of generating the matrix. For example, the vector r = 2/3 , 2 , 3 , 6 , 2/3 can be entered by
typing
18
2.1. Generating Matrices
without having to enter all nine elements. If A (see the beginning of this section) has already been gener-
ated, the simplest way is to type
>> B = A; B(3,3) = 10
Also, the element xi of the vector x is x(i) in MATLAB. For example, to create the column vector
enter
>> x = [1:50]′; x(50) = 51
or
>> x = [1:50]′; x(50) = x(50) + 1
or
>> x = [1:50]′; x(length(x)) = x(length(x)) + 1
where length returns the number of elements in a vector.
MATLAB also has a number of commands that can generate matrices. For example,
>> C = zeros(5)
or
>> C = zeros(5, 5)
generates a 5×5 zero matrix. Also,
>> C = zeros(5, 8)
generates a 5×8 zero matrix. Finally, you can generate a zero matrix C with the same size as an already
existing matrix, such as A, by
>> C = zeros(size(A))
where size(A) is a row vector consisting of the number of rows and columns of A. This command is fre-
quently used to preallocate a matrix of a given size so that MATLAB does not need to “guess” how large
to make it.
Similarly, you can generate a matrix with all ones by ones(n) or ones(m, n) or ones(size(D)).
You can also generate the identity matrix, i.e., the matrix with ones on the main diagonal and zeroes off of
it, by using the command eye with the same arguments as above.
Another useful matrix is a random matrix, that is, a matrix whose elements are all random num-
bers. This is generated by the rand command, which takes the same arguments as above. Specifically,
the elements are uniformly distributed random numbers in the interval (0, 1). To be precise, these are
pseudorandom numbers because they are calculated by a deterministic formula which begins with an ini-
tial “seed” — which is called the state , not the seed. Every time that a new MATLAB session is started,
the default seed is set, and so the same sequence of random numbers will be generated. However, every
time that this command is executed during a session, a different sequence of random numbers is generated.
If desired, a different seed can be set at any time by entering
>> rand(′ state′, <non-negative integer state number>)
Note: You can use the word “seed”, rather than “state”, as the first argument to rand but this causes
MATLAB to use an older random number generator which has a period of 231 − 2. The period of
the current default random number generator is 21492 .
Random matrices are often useful in just “playing around” or “trying out” some idea or checking out
some algorithm. The command randn generates a random matrix where the elements are normally dis-
tributed (i.e., Gaussian distributed) random numbers with mean 0 and standard deviation 1.
There is another “random” function which is useful if you want to reorder a sequence. The command
randperm(n) generates a random permutation of the integers 1, 2, . . . , n.
19
2.1. Generating Matrices
Elementary Matrices
20
2.3. Manipulating Matrices
21
2.3. Manipulating Matrices
22
2.3. Manipulating Matrices
of d1, i.e., 2, 9, 16, 23, 30, and whose other elements are zero, that is,
0 2 0 0 0 0
0 0 9 0 0 0
0 0 0 16 0 0
F1 = .
0 0 0 0 23 0
0 0 0 0 0 30
0 0 0 0 0 0
Finally, typing
>> F2 = diag(d2, -2)
generates a 5×5 matrix whose −2-nd diagonal elements (i.e., two below the main diagonal) are the ele-
ments of d2, i.e., 13, 20, 27, and whose other elements are zero, i.e.,
0 0 0 0 0
0 0 0 0 0
F2 = 13 0 0 0 0 .
0 20 0 0 0
0 0 27 0 0
You can also extract the upper triangular or the lower triangular part of a matrix. For example,
>> G1 = triu(E)
constructs a matrix which is the same size as E and which contains the same elements as E on and above
the main diagonal; the other elements of G1 are zero. This command can also be applied to any of the
diagonals of a matrix. For example,
>> G2 = triu(E, 1)
constructs a matrix which is the same size as E and which contains the same elements as E on and above
the first diagonal, i.e.,
0 2 3 4 5 6
0 0 9 10 11 12
G2 = 0 0 0 16 17 18 .
0 0 0 0 23 24
0 0 0 0 0 30
The similar command tril extracts the lower triangular part of a matrix.
As an example of the relationship between these three commands, consider the square random matrix F
generated by
>> F = rand(6)
All the following MATLAB commands calculate F anew:
>> triu(F) + tril(F) - diag(diag(F))
>> triu(F, 1) + diag(diag(F)) + tril(F, -1)
>> triu(F) + tril(F, -1)
>> triu(F, 2) + diag(diag(F, 1), 1) + tril(F)
Note: Numerically the first command might not generate exactly the same matrix as the following three
because of round-off errors.
By the way, diag, triu and tril cannot appear on the left-hand side of an equation. Instead, to
zero out all the diagonals above the main diagonal of F enter
>> F = F - triu(F, 1)
and to zero out just the first diagonal above the main diagonal enter
>> F = F - tril(triu(F, 1), 1)
What if you want to insert numbers from the upper right-hand corner of a matrix to the lower left-hand
corner? There is no explicit function which does this but there are a number of indirect functions:
fliplr(A) flips the matrix from left to right, i.e., reverses the columns of the matrix;
flipud(A) flips the matrix up and down, i.e., reverses the rows of the matrix;
rot90(A) rot90 rotates the matrix 90◦ ; and
23
2.3. Manipulating Matrices
Also, occasionally, there is a need to replicate or tile a matrix. That is, the command
>> B = repmat(A, m, n)
generates a matrix B which contains m rows and n columns of copies of A. (If n = m then repmat(A,
m) is sufficient.) If A is a p by q matrix, then B ∈ Rmp×nq . This even works if A is a scalar, in which
case this is the same as
>> B = A*ones(m, n)
(but it is much faster if m and n are large since no multiplication is involved).
24
2.4. Simple Arithmetical Operations
Manipulating Matrices
A(i,j) ai,j .
A(:,j) the j-th column of A.
A(i,:) the i-th row of A.
A(:,:) A itself.
A(?1,?2) There are many more choices than we care to describe:
?1 can be i or i1:i2 or i1:i3:i2 or : or [i1 i2 ... ir] and
?2 can be j or j1:j2 or j1:j3:j2 or : or [j1 j2 ... jr].
A(:) On the right-hand side of an equation, this is a column vector containing the
columns of A one after the other.
o
diag(A) A column vector of the k-th diagonal of the matrix (i.e., non-vector) A. If k is
diag(A, k) not given, then k = 0.
o
diag(d) A square matrix with the k-th diagonal being the vector d. If k is not given,
diag(d, k) then k = 0.
o
triu(A) A matrix which is the same size as A and consists of the elements on and
triu(A, k) above the k-th diagonal of A. If k is not given, then k = 0.
o
tril(A) The same as the command triu except it uses the elements on and below the
tril(A, k) k-th diagonalof A. If k is not given, then k = 0.
fliplr(A) Flips a matrix left to right.
flipud(A) Flips a matrix up and down.
Rotates a matrix k×90◦ . If k is not given, then k = 1.
o
rot90(A)
rot90(A, k)
repmat(A, m, n) Generates a matrix with m rows and n columns of copies of A. (If n = m
the third argument is not needed.)
reshape(A, m, n) Generates an m×n matrix whose elements are taken columnwise from A.
Note: The number of elements in A must be mn.
[] The null matrix. This is also useful for deleting elements of a vector and rows
or columns of a matrix.
25
2.4. Simple Arithmetical Operations
P
ℓ
means AB = (aij )(bij ) = k=1 aik bkj . That is, the (i, j)-th element of AB is ai1 b1j + ai2 b2j +
. . . + aiℓ bℓj .
Matrix Exponentiation:
If A ∈ Cn×n and p is a positive integer, then the MATLAB operation
>> A p
ˆ
means Ap = AA . . . A.
| {z }
p times
Matrix Exponentiation is also defined when p is not an integer. For example,
>> A = [1 2; 3 4]; B = A (1/2)
ˆ
calculates a complex matrix B whose square is A. (Analytically, B2 = A, but numerically
>> B 2 - A
ˆ
returns a non-zero matrix — however, all of its elements are less than 10 · eps in magnitude.)
Note: For two values of p there are equivalent MATLAB commands:
A1/2 can also be calculated by sqrtm(A) and
A−1 can also be calculated by inv(A).
Matrix Division:
The expression
A
B
makes no sense in linear algebra: if B is a square non-singular matrix it might mean B−1 A or it
might mean AB−1 . Instead, use the operation
>> A\b
to calculate the solution of the linear system Ax = b (where A must be a square non-singular ma-
trix) by Gaussian elimination. This is much faster computationally than calculating the solution of
x = A−1 b by
>> x = inv(A)*b
Similarly,
A\B
solves AX = B by repeatedly solving Ax = b where b is each column of B in turn and x is the corre-
sponding column of X.
It is also possible to solve xT A = bT for xT by
b.′ /A
and to solve XA = B by
B/A
(This is the same as solving AT XT = BT .)
Elementwise Multiplication:
If A, B ∈ Cm×n , then the MATLAB operation
>> A.*B
means (aij bij ). That is, the (i, j)-th element of A.*B is aij bij . Note that this is not a matrix
operation, but it is sometimes a useful operation. For example, suppose y ∈ Rn has been defined pre-
viously and you want to generate the vector z = (1y1 , 2y2 , 3y3 , . . . , nyn )T . You merely type
>> z = [1:n]′ .* y
(where the spaces are for readability). Recall that if y ∈ Cn you will have to enter
>> z = [1:n].′ .* y
because you do not want to take the complex conjugate of the complex elements of y.
Elementwise Division:
If A, B ∈ Cm×n , then the MATLAB operation
>> A./B
means (aij /bij ).
Elementwise Left Division:
If A, B ∈ Cm×n , then the MATLAB operation
>> B.\A
26
2.4. Simple Arithmetical Operations
In linear algebra this is called the inner product and is defined for vectors a, b ∈ Rn by aT b. It is calcu-
lated by
>> a′ *b
(If a, b ∈ Cn the inner product is aH b and is calculated by a′ *b.) The outer product of these two vectors
is defined to be abT and is calculated by
>> a*b′
(If a, b are complex the outer product is abH and is calculated by a*b′ .) It is important to keep these
two products separate: the inner product is a scalar, i.e., aT b ∈ R (if complex, aH b ∈ C ), while the outer
product is an n×n matrix, i.e., abT ∈ Rn×n (if complex, abH ∈ Cn×n ).
In linear algebra we often work with “large” matrices and are interested in the amount of “work” re-
quired to perform some operation. Previously, MATLAB kept track of the number of flops, i.e., the num-
ber of fl oating-pointoperations, performed during the MATLAB session. Unfortunately, this disappeared
in version 6. Instead, we can calculate the amount of CPU time† required to execute a command by us-
ing cputime. This command returns the CPU time in seconds that have been used since you began your
†
The CPU, Central Processing Unit, is the “guts” of the computer, that is, the hardware that executes the
instructions and operates on the data.
27
2.4. Simple Arithmetical Operations
MATLAB session. This time is frequently difficult to calculate, and is seldom more accurate than to
1/
100 -th of a second. Here is a simple example to determine the CPU time required to invert a matrix.
>> n = input(′n = ′ ); time = cputime; inv(rand(n)); cputime - time
Warning: Remember that you have to subtract the CPU time used before the operation from the CPU
time used after the operation.
By the way, you can also calculate the wall clock time required for some sequence of commands by using
tic and toc . For example,
>> tic; <sequence of commands>; toc
returns the time in seconds for this sequence of commands to be performed.
Note: This is very different from using cputime. tic followed by toc is exactly the same as if you had
used a stopwatch to determine the time. Since a timesharing computer can be running many dif-
ferent processes at the same time, the elapsed time might be much greater than the CPU time.
Normally, the time you are interested in is the CPU time.
cputime Approximately the amount of CPU time (in seconds) used during this session.
tic, toc Returns the elapsed time between these two commands.
28
2.6. Be Careful!
The unary plus and minus are the plus and minus signs in x = +1 and x = −1. The plus and mi-
nus signs for addition and subtraction are, for example, x = 5 + 1 and x = 10 − 13. Thus, 1:n+1 is
1:(n+1) because “ +” has higher precedence than “ :”.† Also, A*C\b = (A*C)\b because “ *” and “ \”
have the same precedence and so the operations are evaluated from left to right.
2.6. Be Careful!
Be very
areful: o
asionally you might misinterpret how MATLAB displays the elements
of a ve
tor or matrix. For example, the MATLAB command eig calculates the eigenvalues of a square
matrix. (We discuss eigenvalues in section 7.) To calculate the eigenvalues of the Hilbert matrix of or-
der 5, i.e.,
1 1/ 1/ 1/ 1/
2 3 4 5
1/2 1/
3
1/
4
1/
5
1/
6
1/3 1/
4
1/
5
1/
6
1/
7
,
1/ 1/ 1/ 1/ 1/
4 5 6 7 8
1/ 1/ 1/ 1/ 1/
5 6 7 8 9
†
On the other hand, in the statistical computer languages R and S (which are somewhat similar to MATLAB),
“ :” has higher precedence than “ +” and so 1:n+1 is (1:n)+1 = 2:(n+1).
29
2.6. Be Careful!
ans =
0.0000
0.0003
0.0114
0.2085
1.5671
You might think the the first element of this vector is 0. However, if it was zero MATLAB would display
0 and not 0.0000. Entering
>> format short e
>> ans
displays
ans =
3.2879e-06
3.0590e-04
1.1407e-02
2.0853e-01
1.5671e+00
which makes it clear that the smallest eigenvalue is far from zero.
On the other hand, if you enter
>> format short
>> A = [1 2 3; 4 5 6; 7 8 9]
>> eig(A)
MATLAB displays
ans =
16.1168
-1.1168
-0.0000
It might appear from our previous discussion that the last eigenvalue is not zero, but is simply too small
to appear in this format. However, entering
>> format short e
>> ans
displays
ans =
1.6117e+01
-1.1168e+00
-8.0463e-16
Since the last eigenvalue is close to eps, but all the numbers in the matrix A are of “reasonable size”,
you can safely assume that this eigenvalue is zero analytically. It only appears to be nonzero when calcu-
lated by MATLAB because
omputers
annot add, subtra
t, multiply, or divide
orre
tly!
As another example of how you might misinterpret the display of a matrix, consider the Hilbert matrix
of order two
1 1/2
H= 1 .
/2 1/3
We write H100 as
100 10 1.5437 0.8262
H ≈ 10 ,
0.8262 0.4421
while in MATLAB entering
30
2.7. Common Mathematical Functions
1.0e+10 *
1.5437 0.8262
0.8262 0.4421
It is very easy to miss the term “ 1.0e+10 *” because it stands apart from the elements of the matrix.
Similarly, entering
>> format short
>> H = hilb(2)
>> ( H (1/2) ) 2 - H
ˆ ˆ 2
should result in the zero matrix, since (H1/2 ) = H. However, MATLAB displays
ans =
1.0e-15 *
0.2220 0
0 0
where, again, it is easy to miss the term “ 1.e-15 *” and not realize that this matrix is very small — in
fact, it should be zero.
Be
areful: MATLAB has nite memory. You should have no problem creating a matrix by
>> A = zeros(1000)
but you might well have a problem if you enter
>> A = zeros(10000)
The amount of memory available is dependent on the computer and the operating system and is very hard
to determine. Frequently it is much larger than the amount of physical memory on your computer. But,
even if you have sufficient memory, MATLAB may slow to a crawl and become unusable. The whos com-
mand will tell you how much memory you are using and show you the size of all your variables. If you
have large matrices which are no longer needed, you can reduce their sizes by equating them to the null
matrix, i.e., [], or remove them entirely by using clear.
Warning: Recall that the clear command is very dangerous because clear A deletes the variable A
but clear (without anything following) deletes all variables!
31
2.8. Data Manipulation Commands
All the common mathematical functions in the table entitled “Some Common Real Mathematical Func-
tions” in subsection 1.5 can be used in this way.
As we will see in the section on graphics, this new interpretation of mathematical functions makes it
easy in MATLAB to graph functions without having to use the MATLAB programming language.
32
2.8. Data Manipulation Commands
There are also a number of MATLAB commands which are particularly designed to plot data. The
commands we have just discussed, such as the average and standard deviation, give a coarse measure of
the distribution of the data. To actually “see” what the data looks like, it has to be plotted. Two particu-
larly useful types of plots are histograms (which show the distribution of the data) and plots of data which
include error bars. These are both discussed in subsection 4.1.
pAlthough it does not quite fit here, sometimes you want to know the length of a vector x, which is
x21 + x22 + . . . x2n . (Note that this is not length(x) which returns the number of elements in x, i.e.,
n.) This length, which is often called the Euclidean length, can be calculated by entering
>> sqrt( x′ *x )
but it can be entered more easily by
>> norm(x)
(As we discuss in section 7, the norm of a vector is a more general concept than simply the Euclidean
length.)
33
2.9. Advanced Topic: Multidimensional Arrays
max(A) A row vector containing the maximum element in each column of a matrix.
[m, i] = max(A) also returns the element in each column which contains the maxi-
mum value in i.
o
min(x) The sum of the elements of a vector, or a row vector containing the sum of the ele-
min(A) ments in each column in a matrix.
o
mean(x) The mean, or average, of the elements of a vector, or a row vector containing the
mean(A) mean of the elements in each column in a matrix.
norm(x) The Euclidean length of a vector.
norm(A) The matrix norm of A.
Note: the norm of a matrix is not the Euclidean length of each column in the
matrix.
o
prod(x) The product of the elements of a vector, or a row vector containing the product of
prod(A) the elements in each column in a matrix.
o
sort(x) Sorts the elements in increasing order of a real vector, or in each column of a real
sort(A) matrix.
o
std(x) The standard deviation of the elements of a vector, or a row vector containing the
std(A) standard deviation of the elements in each column in a matrix.
o
sum(x) The sum of the elements of a vector, or a row vector containing the sums of the
sum(A) elements in each column in a matrix.
o
diff(x) The difference between successive elements of a vector, or between successive ele-
diff(A) ments in each column of a matrix.
o
cumsum(x) The cumulative sum between successive elements of a vector, or between successive
cumsum(A) elements in each column of a matrix.
34
2.10. Be Able To Do
which concatenates the four matrices using the third dimension of ABCD. (The “3” denotes the third di-
mension of ABCD.) And it is much easier than entering
>> ABCD(:,:,1) = A;
>> ABCD(:,:,2) = B;
>> ABCD(:,:,3) = C;
>> ABCD(:,:,4) = D;
If instead, we enter
>> ABCD = cat(j, A, B, C, D)
then the four matrices are concatenated along the j-th dimension of ABCD. That is,
cat(1, A, B, C, D) is the same as [A, B, C, D] and cat(2, A, B, C, D) is the same as
[A; B; C; D].
Another useful command is squeeze which squeezes out dimensions which only have one element. For
example, if we enter
>> E = ABCD(:,2,:)
(where the array ABCD was created above), then we might think that E is a matrix whose columns consist
of the second columns of A, B, C, and D. However, size(E) = 2 1 4 so that E is a three-dimensional
array, not a two-dimensional array. We obtain a two-dimensional array by squeeze(E).
The command permute reorders the dimensions of a matrix. For example,
>> ABCD = cat(3, A, B, C, D)
>> BCDA = permute( ABCD, [2 3 4 1] )
is the same as
>> BCDA = cat(3, B, C, D, A)
That is, the second argument of permute shows where the original ordering of the dimensions, i.e., 1, 2,
. . . , n, are to be placed in the new ordering. ipermute is the inverse of permute so, for example,
>> BCDA = cat(3, B, C, D, A)
>> ABCD = ipermute( BCDA, [2 3 4 1] )
cat Concatenates arrays; this is useful for putting arrays into a higher-dimensional array.
ipermute The inverse of permute.
permute Reorders the dimensions of a multidimensional array.
squeeze Removes (i.e., squeezes out) dimensions which only have one element.
2.10. Be Able To Do
After reading this section you should be able to do the following exercises. The answers are given on
page 137.
1. Consider the matrix
1 2 3 4
5 6 7 8
A= .
9 10 11 12
13 14 15 16
35
3. Anonymous Functions, Strings, and Other Data Types
(a) Enter it using as few keystrokes as possible. (In other words, don’t enter the elements individually.)
(b) Zero out all the elements of A below the diagonal.
5. Enter the column vector
x = (0, 1, 4, 9, 16, 25, . . . , 841, 900)T
using as few keystrokes as possible. (In other words, don’t enter the elements individually.)
6. (a) Generate a random 5×5 matrix R.
(b) Determine the largest value in each row of R and the element in which this value occurs.
(c) Determine the average value of all the elements of R.
(d) Generate the matrix S where every element of S is the sine of the corresponding element of R.
(e) Put the diagonal elements of R into the vector r.
7. Generate the matrix
1 2 3
A = 4 5 6 .
7 8 10
(a) Calculate a matrix B which is the square root of A. That is, B2 = A. Also, calculate a matrix C each
of whose elements is the square root of the corresponding element of A.
(b) Show that the matrices you have obtained in (a) are correct by substituting the results back into the
original formulas.
36
3.1. Anonymous Functions
anonymous functions allow us to easily define a function which we can then plot. Second, some graphics
functions require that the name of a function be passed as an argument. Third, character strings are nec-
essary in labelling plots. And, finally, cell arrays are occasionally helpful in labelling plots. Cell arrays are
generally used to manage data and since structures are also used to manage data we also include them
here. Another reason is that there are a number of data types in MATLAB including numeric, text vari-
ables, cell arrays, and structures. (A “minor” data type is logical, which we discuss in section 8.1.) We
might as well get the last three out of the way at once.
by
>> f = @(t) t. 5 .* exp(-2*t) .* cos(3*t)
and then evaluate it by
ˆ
>> x = [0:.01:1]′
>> fx = f(x)
>> A = rand(5)
>> fA = f(A)
More generally, we can define
g(x, y, a, b, c) = xa e−bx cos(cy)
by
>> g = @(x, y, a, b, c) x. a .* exp(-b.*x) .* cos(c.*y)
ˆ
in which case any of the input arguments can be in R or in Rn . It is also possible — although probably
not very useful — to let g have one vector argument, say x = (x, y, a, b, c)T by
>> g = @(x) x(1) x(3) * exp(-x(4)*x(1)) * cos(x(5)*x(2))
ˆ
(In this example there is no purpose to use .* or . .)
ˆ
Warning: It is quite easy to forget to put dots (i.e., “ .”) before the mathematical operations of multipli-
cation (i.e., * ), division (i.e., / ), and exponentiation (i.e., ). For example, if f is defined by
>> f = @(t) t 5 * exp(-2*t) * cos(3*t)
ˆ
then
ˆ
>> f(3)
is allowed, but not
>> f([1:10])
Be careful!
The syntax for defining an anonymous function is
>> @(<argument list>) <expression>
(Since there is no left-hand side to this expression, the name of this function is ans.) The symbol @ is the
MATLAB operator that constructs a function handle. This is similar to a pointer in C which gives the ad-
dress of a variable or of a function. The name “handle” is used in MATLAB to denote a variable which
refers to some “object” which has been created. Thus, we can think of an anonymous function as being
created by
37
3.2. Passing Functions as Arguments to Commands
It is sometimes necessary to pass the name of a function into a MATLAB function or a function m-file
created by the user. For example, as we discuss in section 4.1, we can plot the function y = f (x) in the
interval [−5, +5] by
fplot(<function "name">, [-5 +5])
But how do we pass this “name”?
We put the name in quotes because we do not pass the name of the function, but its handle. If f has
been defined by an anonymous function, then we enter
fplot(f, [-5 +5])
because f is a variable which we have already defined. If fnc is a MATLAB function or a user-defined
function m-file, then it is not known in the MATLAB workspace so
fplot(fnc, [-5 +5]) % WRONG
will not work. Instead, we use
fplot(@fnc, [-5 +5]) % CORRECT
Note: There are a number of “older” ways to pass function names. For example,
>> fplot(′fnc′ , [-5 +5])
will also work. We can even pass a “simple” function by, for example,
>> fplot(′(x*sin(x) + sqrt(1 + cos(x)))/(x 2 + 1)′ , [-5 +5])
ˆ
38
3.3. Strings
3.3. Strings
Character strings are a very minor part of MATLAB, which is mainly designed to perform numerical
calculations. However, they perform some very useful tasks which are worth discussing now.
It is often important to combine text and numbers on a plot. Since we discuss graphics in the next sec-
tion, now is a good time to discuss how characters are stored in MATLAB variables. A string variable,
such as
>> str = ′ And now for something completely different′
is simply a row vector with each character (actually its ASCII representation as shown on page 139) being
a single element. MATLAB knows that this is a text variable, not a “regular” row vector, and so converts
the numerical value in each element into the corresponding character when it is printed out. For example,
to see what is actually contained in the vector str enter
>> str + 0
or
>> 1*str
Character variables are handled the same as vectors or matrices. For example, to generate a new text
variable which adds “– by Monty Python” to str, i.e., to concatenate the two strings, enter
>> str2 = [str ′ - by Monty Python′]
or
>> str2 = [str, ′ - by Monty Python′]
(which might be easier to read). To convert a scalar variable, or even a vector or a matrix, to a character
variable use the function num2str. For example, suppose you enter
>> x = linspace(0, 2*pi, 100)′
>> c1 = 2
>> c2 = -3
>> y = c1*sin(x) + c2*cos(x)
and want to put a description of the function into a variable. This can be done by
>> s = [ num2str(c1), ′ *sin(x) + ′ , num2str(c2), ′ *cos(x)′]
without explicitly having to enter the values of c1 and c2.
A text variable can also contain more than one line if it is created as a matrix. For example,
>> Str = [′ And ′
′ ′
now
′ ′
for
′ ′
something
′
completely′
′
different ′ ]
is four lines long. Since str is a matrix, each row must have the same number of elements and so we have
to pad all but the longest row. (Using cell arrays, we will shortly show how to avoid this requirement that
each row must have the same number of characters.)
Note: We do not usually enter matrices this way, i.e., one column per line. Instead, we simply use “;” to
separate columns. However here we need to make sure that each row has exa
tly the same number
of characters — or else a fatal error message will be generated.
If desired, you can have more control over how data is stored in strings by using the sprintf command
which behaves very similarly to the C commands sprintf, fprintf, and printf. It is also very similar
to the fprintf command in MATLAB which is discussed in detail in Section 6. Note that the data can
be displayed directly on the screen by using disp. That is, sprintf(...) generates a character string
and disp(sprintf(...)) displays it on the screen.
There also is a str2num command to convert a text variable to a number and sscanf to do the same
with more control over how the data is read. (This is also very similar to the C command, as discussed in
section 6.)
39
3.4. Advanced Topic: Cell Arrays and Structures
′
[2.0000 + 3.0000i] go cells′
[3x1 double] [5x5 double]
The only difference between this and a “standard” array is that here curly braces, i.e., { . . . }, enclose
the elements of the array rather than brackets, i.e., [ . . . ]. Note that only the scalar and the text vari-
able are shown explicitly. The other elements are only described. A second way to generate the same cell
array is by
>> C(1,1) = {2+3i }
>> C(1,2) = {′ go cells′}
>> C(2,1) = {[1 2 3]′ }
>> C(2,2) = {hilb(5) }
and a third way is by
>> C{1,1} = 2+3i
>> C{1,2} = ′ go cells′
>> C{2,1} = [1 2 3]′
>> C{2,2} = hilb(5)
It is important to understand that there is a difference between C(i,j) and C{i,j}. The former is the
cell containing element in the (i, j)-th location whereas the latter is the element itself. For example,
>> C(1,1) 5 % WRONG
ˆ
returns an error message because a cell cannot be raised to a power whereas
>> C{1,1} 5 % CORRECT
ˆ
returns 1.2200e+02 - 5.9700e+02i. All the contents of a cell can be displayed by using the celldisp
function. In addition, just as a “standard” array can be preallocated by using the zeros function, a cell
array can be preallocated by using the cell function. We will not discuss cells further except to state
that cell array manipulation is very similar to “standard” array manipulation.
Warning: In MATLAB you can change a variable from a number to a string to a matrix by simply
putting it on the left-hand side of equal signs. For example,
>> c = pi
>> c = ′ And now for something completely different′
>> c(5,3) = 17
redefines c twice without any difficulty. However, this cannot be done with cells. If you now
try
>> c{3} = hilb(5)
MATLAB will return with the error message
??? Cell contents assignment to a non-cell array object.
In order to use c as a cell (if has been previously used as a non-cell), you have to either clear it
using clear, empty it using [], or explicitly redefine it by using the cell function.
One particularly useful feature of cell arrays is that a number of text variables can be stored in one cell
array. We previously defined a “standard” array of strings in Str on page 39 where each string had to
40
3.4. Advanced Topic: Cell Arrays and Structures
have the same length. Using a cell array we can simply enter
>> Str cell = {′ And′
′
now′
′
for′
′
something′
′
completely′
′
different′}
or
>> Str cell = {′ And′ ; ′ now′ ; ′ for′ ; something′; ′ completely′; ′ different′}
and obtain the i-th row by
>> Str cell{i,:}
Structures can store different types of data similarly to cell arrays, but the data is stored by name,
called fields , rather than by number. Structures are very similar to structures in C and C++ . The cell
array we have been using can be written as a structure by
>> Cs.scalar = 2+3i
>> Cs.text = ′ go cells′
>> Cs.vector = [1 2 3]′
>> Cs.matrix = hilb(5)
Typing
>> Cs
returns
Cs =
41
4. Graphics
returns
ans =
′
scalar′
′
text′
′
vector′
′
matrix′
and
>> isfield(Cs, ’vector’)
returns 1.
We can also use function handles in cell elements and structures. For example, suppose you want to
work with all six basic trig functions. They can be stored in a cell array by
>> T = {@sin, @cos, @tan, @cot, @sec, @csc}
so that T{2}(0) = 1. They can also be stored in a structure by
>> Tr.a = @sin; Tr.b = @cos; Tr.c = @tan; Tr.d = @cot; Tr.e = @sec; Tr.f = @csc;
so that Tr.b(0) = 1. By the way, we can even store anonymous functions in cell arrays and structures.
For example,
>> C = {@sin, @(x) exp(sin(x)), @(x) exp(exp(sin(x)))}
is allowed — but probably not very interesting.
Note: We cannot store function handles in standard matrices — we can only store numbers.
num2str(x) Converts a variable to a string. The argument can also be a vector or a matrix.
str2num(str) Converts a string to a variable. The argument can also be a vector or a matrix
string.
sscanf Behaves very similarly to the C command in reading data from a file using any
desired format. (See fscanf for more details.)
sprintf Behaves very similarly to the C command in writing data to a string using any
desired format. (See fprintf for more details.)
cell Preallocate a cell array of a specific size.
celldisp Display all the contents of a cell array.
struct Create a structure. Some useful commands are fieldnames, isfield, setfield,
getfield, orderfields, and rmfield.
4. Graphics
A very useful feature of MATLAB is its ability to generate high quality two- and three-dimensional
plots using simple and flexible commands. All graphical images are generated in a “graphics window”,
which is completely separate from the “text window” in which MATLAB commands are typed. Thus,
non-graphical and graphical commands can be completely intermixed.
Graphical images can be generated both from data calculated in MATLAB and from data which has
been generated outside of MATLAB. In addition, these images can be output from MATLAB and printed
on a wide variety of output devices, including color ink-jet printers and black-and-white and color laser
printers.
There are a number of demonstrations of the graphical capabilities in MATLAB which are invoked by
>> demo
42
4.1. Two-Dimensional Graphics
Since the MATLAB commands which generate the plots are also shown, this demo makes it quite easy to
generate your own graphics. You also can have very fine control over the appearance of the plots. We be-
gin by considering only the basic commands; more advanced graphics commands are discussed in the next
section.
Note: Most MATLAB commands which take vectors as arguments will accept either row or column vec-
tors.
The MATLAB command plot is used to constructing basic two-dimensional plots. For example, sup-
cos x
pose you want to plot the functions y1 = sin x and y2 = e for x ∈ [0, 2π]; also, you want to plot
2
y3 = sin cos(x − x) for x ∈ [0, 8]. First, generate n data points on the curve by
>> n = 100;
>> x = 2*pi*[0:n-1]′/(n-1);
>> y1 = sin(x);
>> y2 = exp(cos(x));
>> xx = 8*[0:n-1]/(n-1);
>> y3 = sin( cos( xx. 2 - xx ) );
We plot these data points by
ˆ
>> plot(x, y1)
>> plot(x, y2)
>> plot(xx, y3)
Note that the axes are changed for every plot so that the curve just fits inside the axes. We can generate
the x coordinates of the data points more easily by
>> x = linspace(0, 2*pi, n);
>> xx = linspace(0, 8, n);
The linspace command has two advantages over the colon operator:
(1) the endpoints of the axis and the number of points are entered directly as
>> x = linspace(<first point>, <last point>, <number of points>)
so it is much harder to make a mistake; and
(2) round-off errors are minimalized so you are guaranteed that x has exactly n elements, and its first
and last elements are exactly the values entered into the command.†
To put all the curves on one plot, type
>> plot(x, y1, x, y2, xx, y3)
Each curve will be a different color — but this will not be visible on a black-and-white output device.
Instead, you can change the type of lines by
>> plot(x, y1, x, y2, ′ --′ , xx, y3, ′ :′ )
where “ --” means a dashed line and “ :” means a dotted line. (We discuss these symbols in detail in
subsection 4.3.) In addition, you can use small asterisks to show the locations of the data points for the
y3 curve by
>> plot(x, y1, x, y2, ′ --′ , xx, y3, ′ :*′ )
These strings are used to modify the color of the line, to put markers at the nodes, and to modify the type
of line as shown in the table below. (As we discuss later in this section, the colors are defined by giving
the intensities of the red, green, and blue components.)
†
As we discussed previously, it is very unlikely (but it is possible) that round-off errors might cause the
statement
>> x = [0: 2*pi/(n-1): 2*pi]′ ;
to return n − 1 elements rather than n. This is why we used the statement
>> x = 2*pi*[0:n-1]′ /(n-1);
above, which does not suffer from round-off errors because the colon operator is only applied to integers.
43
4.1. Two-Dimensional Graphics
For example,
>> plot(x, y1, ′ r′ , x, y2, ′ g--o′ , x, y3, ′ mp′ )
plots three curves: the first is a red, solid line; the second is a a green, dashed line with circles at the data
points; the third has magenta pentagrams at the data points but no line connecting the points.
We can also plot the first curve, and then add the second, and then the third by
>> plot(x, y1)
>> hold on
>> plot(x, y2)
>> plot(xx, y3)
>> hold off
Note that the axes can change for every new curve. However, all the curves appear on the same plot.
Instead of putting a number of curves on one plot, you might want to put a number of curves individu-
ally in the graphics window. You can display m plots vertically and n plots horizontally in one graphics
window by
>> subplot(m, n, p)
This divides the graphics window into m×n rectangles and selects the p-th rectangle for the current plot.
All the graphics commands work as before, but now apply only to this particular rectangle in the graphics
window. You can “bounce” between these different rectangles by calling subplot repeatedly for different
values of p.
Warning: If you are comparing a number of plots, it is important to have the endpoints of the axes be the
same in all the plots. Otherwise your brain has to try to do the rescaling “on the fly” — which
is very difficult. Of course, you frequently do not know how large the axes need to be until you
have filled up the entire graphics window. The axis command (discussed below) can then be
used to rescale all the plots.
In addition, you can also change the endpoints of the axes by
>> axis([-1 10 -4 4])
The general form of this command is axis([xmin xmax ymin ymax]). If you only want to set some of
the axes, set the other or others to ±Inf ( −Inf if it is the minimum value and +Inf if it is the maxi-
mum). Also, you can force the two axes to have the same scale by
>> axis equal
or
>> axis image
and to have the same length by
44
4.1. Two-Dimensional Graphics
45
4.1. Two-Dimensional Graphics
46
4.1. Two-Dimensional Graphics
Note that c contains the midpoints of each bin and not their endpoints. Another way to calculate c,
which might be clearer, is
>> c = linspace(-xmax+xmax/nrbin, xmax-xmax/nrbin, nrbin);
Of course, to get a “good” histogram you should increase nrbin, say to 100, and nrdata, say to
100,000. If you now rerun this code you will see a much smoother histogram.
We have already seen how to plot the vector x vs. the vector y by using the plot command. If, ad-
ditionally, you have an error bar of size ei for each point yi , you can plot the curve connecting the data
points along with the error bars by
>> errorbar(x, y, e)
Sometimes the error bars are not symmetric about the y values. In this case, you need vectors l and u
where at xi the error bars extend from yi − li to yi + ui . This is done by
>> errorbar(x, y, l, u)
Note: All the elements of l and u are non-negative.
Data can also be entered into MATLAB from a separate data file. For example,
>> M = csvread(′<file name>′)
reads in data from a file one row per line of input. The numbers in each line must be separated by com-
mas. The data can then be plotted as desired. The command csvwrite writes the elements of a matrix
into a file using the same format. (If desired, you can have much more control over how data is input and
output by using the fscanf and fprintf commands, which are similar to their C counterparts. These
commands are discussed in detail in section 6.)
The load command can also be used to read a matrix into MATLAB from a separate data file. The
data must be stored in the data file one row per line. The difference between this command and csvread
is that the numbers can be separated by commas or by spaces. The matrix is input by entering
>> load(′ <file name>′)
and it is stored in the matrix named <file name-no extension> (i.e., drop the extension, if any, in the
file name).†
Graphics can also be easily printed from within MATLAB. You can print directly from the graphics
window by going into the “File” menu item. If desired, the plot can be sent to a file rather than to an
output device. You can also store the plot in the text window by using the command print. There are
an innumerable number of printer specific formats that can be used. (See help print or doc print for
details.) If you want to save a file in postscript, you can save it in black-and-white postscript by
>> print -deps <file name b&w>
or in color postscript by
>> print -depsc <file name color>
There is a minor, but important, difference between these two files if they are printed on a black-and-
white laser printer. When the black-and-white file is printed, all the non-white colors in the plot become
†
The load command is a little tricky because it can read in files generated both by MATLAB (using the save
command) and by the user. For example,
>> save allvariables;
>> clear
or
>> save allvariables.mat;
>> clear
saves all the variables to the file allvariables.mat in binary format and then deletes all the variables. Entering
>> load allvariables
or
>> load allvariables.mat
loads all these variables back into MATLAB using the binary format. On the other hand, if you create a file, say
mymatrix.dat, containing the elements of a matrix and enter it into MATLAB using
>> load(′ mymatrix.dat′ )
you obtain a new matrix, called mymatrix, which contains these elements. Thus, the load command determines
how to read a file depending on the extension.
47
4.1. Two-Dimensional Graphics
black. However, when the color file is printed, the colors are converted to different grayscales. This makes
it possible to differentiate lines and/or regions.
Note: The print command is also a MATLAB function where it is called by
>> print(′-deps′, ′ <file name b&w>′ )
The advantage of using the print function is that the arguments can be variables. An
oversimplified example is
>> device = ′ -deps′
>> file = ′ <file name b&w>′
>> print(device, file)
It is oversimplifed because there is no need to use three lines when one will do. However, if many
plots are to be printed then the print device can be changed once rather than in every print
command. Also, if you are printing many plots then you can easily modify the file names as in
>> i = 1
>> file = [′ fiddledum′, num2str(i), ′ .eps′ ]
>> print(device, file)
>> . . .
>> i = i + 1
>> file = [′ fiddlededum′, num2str(i), ′ .eps′ ]
>> print(device, file)
>> . . .
Input-Output
csvread(′<file name>′ ) Reads data into MATLAB from the named file, one row per line of
input; the numbers in each line must be separated by commas.
load(′<file name>′) Reads data into MATLAB from the named file, one row per line
of input; the numbers in each line can be separated by spaces or
commas. The name of the resulting matrix is <file name>.
csvwrite(′<file name>′, A) Writes out the elements of a matrix to the named file using the same
format as csvread.
print Prints a plot or saves it in a file using various printer specific for-
mats.
For example, print -deps <file name> saves the plot in the file
using encapsulated PostScript (so it can be plotted on a PostScript
laser printer).
48
4.2. Three-Dimensional Graphics
Two-Dimensional Graphics
49
4.2. Three-Dimensional Graphics
enter
>> t = linspace(0, 20*pi, 1000);
>> c = cos(t);
>> s = sin(t);
>> plot3(c, s, t)
and to generate a conical helix enter
>> t = [0 : pi/100 : 20*pi];
>> c = cos(t);
>> s = sin(t);
>> plot3(t.*c, t.*s, t)
Also, you can put a label on the z-axis by using the zlabel command. There is also an “easy” plot3
command. It generates the curve x(t), y(t), z(t) for t ∈ (0, 2π) by
>> ezplot3(x, y, z)
if x, y, and z have been defined using anonymous functions. Again, you change the domain of t by
specifying the additional argument [tmin, tmax].
MATLAB also plots surfaces z = f(x, y) in three-dimensions with the hidden surfaces removed. First,
the underlying mesh must be created. The easiest way is to use the command meshgrid. This combines
a discretization of the x axis, i.e., { x1 , x2 , . . . , xm }, and
the y axis, i.e., { y1 , y2 , . . . , yn }, into the rect-
angular mesh (xi , yj ) i = 1, 2, . . . , m , j = 1, 2, . . . , n in the x–y plane. The function f can then be
evaluated at these mesh nodes. For example,
>> x = [-3:0.1:3]′;
>> y = [-2:0.1:2]′;
>> [X, Y] = meshgrid(x, y);
>> F = (X + Y).*exp( -X.*X - 2*Y.*Y );
>> mesh(X, Y, F)
generates a colored, wire-frame surface whereas
>> surf(X, Y, F)
generates a colored, filled-in surface. We discuss how to change the colors, and even how to use the colors
as another variable, in the next section.
You can change the view of a three-dimensional plot by using the view command. This command is
called in either of two ways:
• First, you can give the angles from the origin of the plot to your eye by
view(<azimuth>, <elevation>)
where the azimuth is the angle in degrees in the x–y plane measured from the −y axis (so 0◦ is the
−y axis, 90◦ is the x axis, 180◦ is the y axis, etc.) and the elevation is the angle in degrees up
from the x–y plane toward the +z axis (so 0◦ is in the x–y plane, 90◦ is on the +z axis, etc.).
• Second, you can give the coordinates of a vector pointing from the origin of the plot to your eye by
view([x y z]), where you enter the coordinates of the vector.
If you type
>> contour(X, Y, F)
you will see contour plots of the surface. That is, you will be looking down the z axis at curves which
represent lines of constant elevation (i.e., constant z values). If we type
>> contour3(X, Y, F)
you will see contour plots of the surface in three dimensions. You can again change your view of these
curves by using the view command.
If you do not want to bother with generating the mesh explicitly, you can generate “easy” plots by
ezcontour, ezcontour3, ezmesh, and ezsurf.
50
4.3. Advanced Graphics Techniques: Commands
Three-Dimensional Graphics
plot3(x, y, z) Plots the data points in Cartesian coordinates. The general form of this
command is plot(x1, y1, z1, s1, x2, y2, z2, s2, ...) where s1,
s2, . . . are optional character strings containing information about the
type of line, mark, and color to be used.
ezplot3(<fnc 1>, Generates an “easy” plot in 3-D.
<fnc 2>, <fnc 3>)
mesh(X, Y, Z) Plots a 3-D surface using a wire mesh.
ezmesh(<2D fnc>) Generates an “easy” 3-D surface using a wire mesh.
surf(X, Y, Z) Plots a 3-D filled-in surface.
ezsurf(<2D fnc>) Generates an “easy” 3-D filled-in surface.
view Changes the viewpoint of a 3-D surface plot by
view(<azimuth>, <elevation>) or view([x y z]).
meshgrid(x, y) Generates a 2-D grid given the x-coordinates and the y-coordinates of the
mesh lines.
zlabel(<string>) Puts a label on the z-axis.
axis Controls the scaling and the appearance of the axes.
axis([xmin xmax ymin ymax zmin zmax]) changes the endpoints of the
axes.
contour(X, Y, Z) Plots a contour looking down the z axis.
ezcontour(<2D fnc>) Generates an “easy” contour looking down the z axis.
contour3(X, Y, Z) Plots a contour in 3-D.
ezcontour3(<2D fnc>) Generates an “easy” contour in 3-D.
subplot(m, n, p) Remember than subplot can also be called in 3-D to put a number of
plots in one graphics window.
51
4.3. Advanced Graphics Techniques: Commands
>> gtext(<string>)
The text is fixed by depressing a mouse button or any key.
If more than one curve appears on a plot, you might want to label each curve. This can be done directly
using the text or gtext command. Alternatively, a legend can be put on the plot by
>> legend(<string1>, <string2>, . . . )
Each string appears on a different line preceded by the type of line (so you should use as many strings as
there are curves). The entire legend is put into a box and it can be moved within the plot by using the
left mouse button.
TEX commands can be used in these strings to modify the appearance of the text. The results are
similar, but not quite identical, to the appearance of the text from the TEX program (so do some exper-
imenting). Most of the “common” TEX commands can be used, including Greek letters; also, “ ” and
ˆ
“R ” are used for superscripts and subscripts. For example, the x-axis can be labelled α2 and the y-axis
α
0 f (x) dx by
>> xlabel(′\alpha 2′ )
ˆ
>> ylabel(′\int 0 \pi\betaf(x) dx′ )
ˆ
To see the complete list of TEX commands, enter
>> doc text
and then click on the highlighted word String.
Note: For you TeXers note the funny control sequence “\betaf(x)” which generates βf (x). If you would
have typed “\beta f(x)” you would have obtained β f (x) because MATLAB preserves spaces. If
typing “\betaf(x)” sets your teeth on edge, try “\beta{}f(x)” instead.
It is often essential for the title to include important information about the plot (which would, other-
wise, have to be written down “somewhere” and connected to this specific plot). For example, suppose
you enter
>> x = linspace(0, 2*pi, 100)
>> c1 = 2
>> c2 = -3
>> p1 = 1
>> p2 = 3
>> y = c1*sin(x). p1 + c2*cos(x). p2
>> plot(x, y)
ˆ ˆ
and you want to “play around” with the two coefficients to obtain the most “pleasing” plot. Then you
probably should have the title include a definition of the function — and you should not have to modify
the title by hand every time you change the coefficients. This can be done by
>> t = [num2str(c1), ′ *sin ′ , num2str(p1), ′ (x) + ′ , num2str(c2), ...
′ ˆ
*cos ′ , num2str(p2), ′ (x)′ ]
>> title(t)
ˆ
where we use the text variable t, rather than putting the string directly into title, simply to make
the example easier to read. There is now a permanent record of the function which generated the curve.
(Alright, this isn’t a great example, but it’s better than nothing.)
You can also put plots in a new graphics window by entering
>> figure
where the figures are numbered consecutively starting with one (and appear at the top of the window). Or
enter
>> figure(n)
and the figure will have the specific number n. This creates a new window and makes it the current tar-
get for graphics commands. You can “bounce” between graphics windows by entering
>> figure(n)
where n is the number of the graphics window you want to make current. New plots will now appear in
this figure. In this way much more information can be generated and viewed on the computer terminal.
Occasionally, it is useful to clear a figure. For example, suppose you divide a window into a 2×2 ar-
ray of plotting regions and use subplot to put a plot into each region; you then save the figure into a
file. Next, you only want to put plots into two of these four regions. The difficulty is that the other two
regions will still contain the previous plots. You can avoid this difficulty by clearing the figure using
52
4.3. Advanced Graphics Techniques: Commands
>> clf
which clears the current figure. You can clear a particular figure by clf(n).
All the above MATLAB commands can be used for 3-D graphics except for gtext. The text com-
mand is the same as described above except that the position of the text requires three coordinates, i.e.,
>> text(x, y, z, <string>)
The new command
>> zlabel(<string>)
labels the z-axis.
As we discussed in the previous subsection, the mesh and surf commands allow us to plot a surface
in three dimensions where the colors on the surface represent its height. We can add a rectangle which
contains the correspondence between the color and the height of the surface by adding
>> colorbar
We can also let the colors represent a separate quantity C, which is also defined at each mesh point, by
changing the command to
>> mesh(X, Y, F, C)
or
>> surf(X, Y, F, C)
Each graphics window has a separate color map associated with it. This color map is simply an n×3
matrix, where each element is a real number between 0 and 1 inclusive. In each row the first column
gives the intensity of the color red, the second column green, and the third column blue; these are called
the RGB components of a color. For example, we show the RGB components of cyan, magenta, yellow,
red, blue, green, white, and black in the table “Customizing Lines and Markers” at the beginning of this
section; for further information, enter doc colorspec. The value input to this color map is the row rep-
resenting the desired color.
For mesh or surf the value of F (or of C if there is a fourth argument) is linearly rescaled so its mini-
mum value is 1 and its maximum value is n. To see the current color map, enter
>> colormap
To change the color map, enter
>> colormap(<color map>)
where <color map> can be an explicit n×3 matrix of the desired RGB components or it can be a string
containing the name of an existing color map. The existing color maps can be found by typing
>> doc graph3d
A useful color map for outputting to laser printers is ′ gray′ . In this colormap all three components of
each row have the same value so that the colors change gradually from black (RGB components [0 0 0])
through gray [.5 .5 .5]) to white [1 1 1]).
MATLAB can also plot a two-dimensional image (i.e., a picture) which is represented by a matrix
X ∈ Rm×n . The (i, j)-th element of X specifies the color to use in the current color map. This color
appear in the (i, j)-th rectilinear patch in the plot. For example, to display the color image of a clown
enter
>> load clown
>> image(X);
>> colormap(map)
The image command inputs the matrix X and the colormap map from clown.mat. Then the image is
displayed using the new color map. Similarly,
>> load earth
>> image(X);
>> colormap(map);
>> axis image
displays an image of the earth. (The axis command forces the earth to be round, rather than elliptical.)
(In the demonstration program, after clicking on “Visualization” double-click on “Image colormaps” to see
the images which you can access in MATLAB and the existing color maps.)
53
4.3. Advanced Graphics Techniques: Commands
MATLAB can also fill-in two-dimensional polygons using fill or three-dimensional polygons using
fill3. For example, to draw a red circle surrounding a yellow square, enter
>> t = linspace(0, 2*pi, 100);
>> s = 0.5;
>> xsquare = [-s s s -s]′ ;
>> ysquare = [-s -s s s]′ ;
>> fill(cos(t), sin(t), ′ r′ , xsquare, ysquare, ′ y′ )
>> axis equal;
To obtain a more interesting pattern replace the above fill command by
>> colormap(′hsv′ );
>> fill(cos(t), sin(t), [1:100], xsquare, ysquare, [100:10:130])
Rather than entering polygons sequentially in the argument list, you can enter
>> fill(X, Y, <color>)
where each column of X and Y contain the endpoints of a different polygon. Of course, in this case the
number of endpoints of each polygon must be the same, by padding if necessary. For example, to draw a
cube with all the faces having a different solid color, input the matrices
0 1 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1
1 1 0 0 1 1 0 1 1 0 0 0 0 0 1 0 0 1
X= , Y= , Z= .
1 1 0 0 1 1 0 1 1 0 1 1 1 1 1 1 0 1
0 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1
Then enter
>> fill3(X, Y, Z, [1:6])
>> axis equal
Change your orientation using view to see all six faces. Read the documentation on fill and fill3 for
more details.
54
4.4. Advanced Graphics Techniques: Handles and Properties
Text Properties
Clipping on — (default) Any portion of the text that extends outside the axes rect-
angle is clipped
off — No clipping is done.
Color A three-element vector specifying a color in terms of its red, blue, and
green components, or a string of the predefined colors.
FontName The name of the font to use. (The default is Helvetica.)
FontSize The font point size. (The default is 10 point.)
HorizontalAlignment left — (default) Text is left-justified
center — Text is centered.
right — Text is right justified.
Rotation The text orientation. The property value is the angle in degrees.
VerticalAlignment top — The top of the text rectangle is at the point.
cap — The top of a capital letter is at the point.
center — (default) The text is centered vertically at the point.
baseline — The baseline of the text is placed at the point.
bottom — The bottom of the text rectangle is placed at the point.
55
4.5. Be Able To Do
The more common way of customizing parameters is by using the set command. The two functions
get and set are used to obtain the value of one parameter and to set one or more parameters. For ex-
ample, to get the font which is presenting being used enter
>> s = get(h, ′ FontName′)
and the string s contains the name of the font. The two arguments to get are the handle of the object
desired and the name of the property.
There are two other commands which can obtain a handle:
>> hf = gcf
returns the handle of the current figure and
>> ha = gca
returns the handle of the current axes in the current figure. There is one case where we frequently use
handle graphics. When a figure is printed, the graphical images do not fill the entire page. The default
size is approximately 6.5 inches wide and 5.5 inches high. When we want to use the full size of a sheet of
paper we use
>> figure(′PositionPaper′, [0 0 8.5 11])
or
>> figure(n)
>> set(gcf, ′ PositionPaper′, [0 0 8.5 11])
since the default units for this property are inches. This sets the graphical images to use the full paper
size (the position is given as [left bottom width height] ) with a one inch border. This is frequently
useful if subplot is being used to put a number of plots on a page.
Finally, if subplot is being used it is sometimes useful to put a title on the entire page, not just in
each subplot. This can be done by
>> axes handle = axes(′Position′, [0 0 1 0.95], ′ Visible′, ′ off′ );
>> title handle = get(axes handle, ′ title′);
>> set(title handle, ′ String′, <title>, ′ Visible′, ′ on′ );
The first line specifies a rectangle for the axes in normalized units (so that (
[left bottom width height] = [0 0 1 1] is the full size of the figure). The axes are invisible because
they are only being created so that a title can go on top. The second line gets the handle for the title
object of the new axes. The third line puts <title> into the title object and makes it visible.
get(<handle>, ′ <Prop>′) Return the current value of the property of the object with this
handle.
set(<handle>, ′ <Prop 1>′ , Set the property, or properties, of the object with this handle.
<Value 1>, ...)
gca The current axes handle.
gcf The current figure handle.
4.5. Be Able To Do
After reading this section you should be able to do the following exercises. The answers are given on
page 137.
1. Plot ex and one of its Taylor series approximations.
(a) Begin by plotting ex for x ∈ [−1, +1].
(b) Then plot
x x2 x3
p3 (x) = 1 + + +
1! 2! 3!
on the same graph.
56
5.1. Square Linear Systems
(c) Also plot the difference between ex and this cubic polynomial, i.e., ex − p3 (x) on the same graph.
(d) Next, generate a new graph containing all three curves by using only one plot command, force the
axes to be to the same scale, and let all three curves have different colors. Put labels on the x and y
axes and a silly title on the entire plot.
(e) The above plot is not very instructive because ex − p3 (x) is much smaller than either ex or p3 (x).
Instead, use two plots. The first plot contains ex and p3 (x) and the second plot, which is immediately
below the first, contains ex − p3 (x). These two plots should fill an entire sheet of paper.
2. Consider the function
f (x, y) = (x2 + 4y 2 ) sin(2πx) sin(2πy) .
57
5.1. Square Linear Systems
where ??? is one of the above properties. To turn this property back off, enter
>> prop.??? = false
(We discuss logical variables in section 8.1.) If A has one (or more) of these properties, it can be solved
much faster than using x = A\b.
When A is singular there are either zero solutions or an infinite number of solutions to this equation
and a different approach is needed. The appropriate MATLAB command system is now rref. It begins
by applying Gaussian elimination to the linear system of equations. However, it doesn’t stop there; it con-
tinues until it has zeroed out all the elements it can, both above the main diagonal as well as below it.
When done, the linear system is in reduced row echelon form:
• The first nonzero coefficient in each linear equation is a 1 (but a linear equation can be simply 0 = 0
in which case it has no nonzero coefficient).
• The first nonzero term in a particular linear equation occurs later than in any previous equation.
That is, if the first nonzero term in the j-th equation is xkj and in the j+1-st equation is xkj+1 ,
then kj+1 > kj .
To use rref, the linear system must be written in augmented matrix form, i.e.,
x1 x2 ... xn = rhs
a11 a12 ... a1n b1
a
21 a22 ... a2n b2
... ... .. ... ... .
.
am1 am2 ... amn bm
Warning: It is very important to realize that an augmented matrix is not a matrix (because the
operations we apply to augmented matrices are not the operations we apply to matrices). It is
simply a linear system of equations written in shorthand: the first column is the coefficients of
the x1 term, the second column is the coefficients of the x2 term, etc., and the last column is
the coefficients on the right-hand side. The vertical line between the last two columns repre-
sents the equal sign. Normally, an augmented matrix is written without explicitly writing the
header information; however, the vertical line representing the equal sign should be included to
explicitly indicate that this is an augmented matrix.
rref operates on this augmented matrix to make as many of the elements as possible zero by using al-
lowed operations on linear equations — these operations are not allowed on matrices, but only on linear
systems of equations. The result is an augmented matrix which, when written back out as a linear system
of equations, is particularly easy to solve. For example, consider the system of equations
x1 + 2x2 + 3x3 = −1
4x1 + 5x2 + 6x3 = −1
7x1 + 8x2 + 10x3 = 0 ,
x1 x2 x3 = rhs
1 2 3 −1
4 5 6 −1 .
7 8 10 0
(We have included the header information for the last time.) Entering
58
5.1. Square Linear Systems
x1 + 2x2 + 3x3 = −1
4x1 + 5x2 + 6x3 = −1
7x1 + 6x2 + 9x3 = −1 ,
Since A is a singular matrix, the linear system has either no solutions or an infinite number of solutions.
The augmented matrix for this linear system is
1 2 3 −1
4 5 6 −1 .
7 8 9 0
Entering
>> rref([A b])
returns the augmented matrix
1 0 −1 1
0 1 2 −1 ,
0 0 0 0
so the solution of the linear system is x1 = 1 + x3 and x2 = −1 − 2x3 for any x3 ∈ R (or C if desired).
In vector form, the solution is
x1 1 + x3 1 x3 1 1
x2 = −1 − 2x3 = −1 + −2x3 = −1 + x3 −2 .
x3 x3 0 x3 0 1
Suppose you modify the matrix equation slightly by letting b = (−1, −1, 0)T . Now entering
>> rref([A b])
results in the augmented matrix
1 0 −1 1
0 1 2 −1 .
0 0 0 1
Since the third equation is 0 = 1, there is clearly no solution to the linear system.
Warning: The command rref does not always give correct results. For example, if
0.95 0.03
C=
0.05 0.97
59
5.2. Catastrophic Round-Off Errors
then the matrix I − C is singular (where I is the identity matrix). However, if you solve
(I − C)x = 0 by
>> C = [0.95 0.03; 0.05 0.97];
>> rref([eye(size(C))-C [0 0]′ ])
MATLAB displays
ans =
1 0 0
0 1 0
which indicates that the only solution is x = 0. On the other hand, if you enter
>> C = [0.95 0.03; 0.05 0.97]; b = 1;
>> rref([eye(size(C))-C [b 0]′ ])
then MATLAB realizes that I − C is singular. Clearly there is some value of b between 0
and 1 where MATLAB switches between believing that I − C is non-singular and singular.†
linsolve(A, b, <properties>) Solve the linear system of equations Ax = b where A has certain
properties.
rref Calculates the reduced row echelon form of a matrix or an aug-
mented matrix.
We have mentioned repeatedly that
omputers
annot add, subtra
t, multiply, or divide
or-
re
tly! Up until now, the errors that have resulted have been very small. Now we present two examples
where the errors are very large.
In this first example, the reason for the large errors is easy to understand. Consider the matrix
1 2 3
Aǫ = 4 5 6 ,
7 8 9+ǫ
which is singular when ǫ = 0 and nonsingular otherwise. But how well does MATLAB do when ǫ ≪ 1?
Enter
>> eps = input(′eps = ′ ); A = [1 2 3; 4 5 6; 7 8 9+eps]; inv(A)*A - eye(size(A))
so that the final matrix should be O. Begin by letting ǫ = 0 and observe that the result displayed is
nowhere close to the zero matrix! However, note that MATLAB is warning you that it thinks something is
wrong with the statement
†
To understand this “switch”, look at the actual coding of rref. It uses the variable tol to determine
whether an element of the augmented matrix
„ «
0.05 −0.03 b1
−0.05 0.03 b2
is “small enough” that it should be set to 0. tol is (essentially) calculated by
tol = max(size(<augmented matrix>)) * eps * norm(<augmented matrix>, inf);
The maximum of the number of rows and columns of the augmented matrix, i.e., max(size(...)), is multiplied
by eps and this is multiplied by the “size” of the augmented matrix. ( norm in section 7.) Since b is the last
column of the augmented matrix, the “size” of this matrix depends on the size of the elements of b. Thus, the
determination whether a number “should” be set to 0 depends on the magnitude of the elements of b.
You can obtain the correct answer to the homogeneous equation by entering
>> rref([eye(size(C))-C [0 0]′ ], eps)
which decreases the tolerance to eps.
60
5.3. Overdetermined and Underdetermined Linear Systems
Hx = b
for a given b. How close is the numerical solution to the exact solution? Of course, the problem is: how
can you know what the analytical solution is for a given b? The answer is to begin with x and calcu-
late b by b = Hx. Then solve Hx = b for x and compare the final and initial values of x. Do this in
MATLAB by
>> n = 10; x = rand(n, 1); b = H*x; xnum = H\b
and compare x with xnum by calculating their difference, i.e.,
>> x - xnum
The result is not very satisfactory: the maximum difference in the elements of the two vectors is usually
somewhere between 10−5 and 10−3 . That is, even though all the calculations have been done to approx-
imately 16 significant digits, the result is only accurate to three to ve significant digits! (To see how
much worse the result can be, repeat the above commands for n = 12.)
It is important to realize that most calculations in MATLAB are very accurate. It is not that solving
a matrix equation necessarily introduces lots of round-off errors; instead, Hilbert matrices are very “un-
stable” matrices — working with them can lead to inaccurate results. On the other hand, most matrices
are quite “stable”. For example, if you repeat the above sequence of steps with a random matrix, you find
that the results are quite accurate. For example, enter
>> n = 1000; R = rand(n); x = rand(n, 1); b = R*x; xnum = R\b; max(abs(x - xnum))
The results are much more reassuring, even though n is 100 times as large for this random matrix as for
the Hilbert matrix — and even though there are over 600,000 times as many floating point operations
needed to calculate x by Gaussian elimination for this random matrix!
Note: By entering all the commands on one line, it is easy to repeat this experiment many times for differ-
ent random numbers by simply rerunning this one line.
r = Ax − b
61
5.3. Overdetermined and Underdetermined Linear Systems
is minimized. (The norm function is discussed in section 7.) This is called the least-squares solution. This
best approximation is calculated in MATLAB by typing
>> A\b
Analytically, the approximation can be calculated by solving
AT Ax = AT b .
However, numerically this is less accurate than the method used in MATLAB.
Note that this is the same command used to find the solution to a square linear system. This cannot be
the intent here since A is not a square matrix. Instead, MATLAB interprets this command as asking for
the least-squares solution. Again, this command only makes sense if there is a unique solution which mini-
mizes the length of the vector Ax − b. If there are an infinite number of least-squares solutions, MATLAB
warns you of this fact and then returns one of the solutions. For example, if
1 2 3 2
4 5 6 1
A= and b =
7 8 9 2
10 11 12 4
then Ax = b has no solutions, but has an infinite number of least-square approximations. If you enter
>> A\b
the response is
Warning: Rank deficient, rank = 2 tol = 1.4594e-14.
It also returns the solution (−1/4 , 0, 29/60 )T (after using the MATLAB command rats which we discuss
below), which is one particular least-squares approximation. To find all the solutions, you can use rref
to solve AT Ax = AT b. (If A is complex, solve AH Ax = AH b.)
Occasionally, if there are an infinite number of least-squares approximations, the solution desired is the
“smallest” one, i.e., the x for which the length of the vector x is minimized. This can be calculated using
the pseudoinverse of A, denoted by A+ . Since A is not square, it cannot have an inverse. However, the
pseudoinverse is the unique n×m matrix which satisfies the Moore-Penrose conditions:
• AA+ A = A
• A+ AA+ = A+
• (AA+ )T = AA+
• (A+ A)T = A+ A
In particular, if A is a square nonsingular matrix, then A+ is precisely A−1 . This pseudoinverse is calcu-
lated in MATLAB by entering
>> pinv(A)
The reason for mentioning the pseudoinverse of A is that the least-squares approximation to Ax = b can
also be calculated by
>> pinv(A)*b
If there are an infinite number of least-squares approximations, this returns the one with the smallest
length.
Next, suppose that A ∈ Cm×n with m < n. Ax = b is called an underdetermined system because there
are less equations than unknowns. In general, there are an infinite number of solutions to this equation.
We can find these solutions by entering
>> rref([A b])
and solving the result for x. We can find one particular solution by entering
>> A\b
62
6. File Input-Output
This solution will have many of its elements being 0. We can also find the solution with the smallest
length by entering
>> pinv(A)*b
Warning: It is possible for an overdetermined system to have one or even an infinite number of solutions
(not least-squares approximations). It is also possible for an underdetermined system to have
no solutions. The way to check the number of solutions is to use the rref command.
One command which is occasionally useful is rats. If all the elements of A and b are rational num-
bers, then the solution and/or approximation obtained is usually a rational number, although stored as
a floating-point number. This command displays a “close” rational approximation to the floating-point
number, which may or may not be the exact answer. For example, entering
>> rats(1/3 - 1/17 + 1/5)
results in the text variable 121/255, which is the correct answer.
Warning: Be careful when using this command. rats(sqrt(2)) makes no sense (as was known in 500
BC).
A\b When Ax = b is an overdetermined system, i.e., m > n where A ∈ Cm×n , this is the
least-squares approximation; when it is an underdetermined solution, i.e., m < n, this is
a solution which has 0 in many of its elements.
pinv(A) The pseudoinverse of A.
6. File Input-Output
In section 4.1 we discussed the csvread and csvwrite commands which allow simple input from and
output to a file. The MATLAB commands fscanf and fprintf, which behave very similarly to their C
counterparts, allow much finer control over input and output. Before using them a file has to be opened
by
>> fid = fopen(′<file name>′, <permission string>)
where the file identifier fid is a unique nonnegative integer attached to the file. (Three file identifiers al-
ways exist as in C: 0 is the standard input, 1 is the standard output, and 2 is the standard error.) The
permission string specifies how the file is to be accessed:
′ ′
r read only from the file.
′ ′
w write only to the file (anything previously contained in the file is overwritten). If necessary, the
file is created.
′ ′
a append to the end of the file (everything previously contained in the file is retained).
′
r+′ read from and write to the file (anything previously contained in the file is overwritten).
′
w+′ read from and write to the file (anything previously contained in the file is overwritten). If neces-
sary, the file is created.
If the fopen command fails, −1 is returned in the file identifier. Enter
>> fclose(fid)
if a file needs to be closed.
To write formatted data to a file, enter
>> fprintf(fid, <format string>, <variable 1>, <variable 2>, ...)
The elements contained in the variables are written to the file specified in a previous fopen command ac-
cording to the format string. If fid is omitted, the output appears on the screen. The format string is
very similar to that of C, with the exception that the format string is cycled through until the end of the
file is reached or the number of elements specified by size is attained.
To briefly review some of the C format specifications, the conversion characters are:
63
6. File Input-Output
x =
-23.6000
x = -23.6000
-2.360000e+01
Note: It is easy to print the matrix A in the MATLAB workspace as we just described. However, it is
a little more difficult to print it to a file. The following works and can be entered on one line, al-
though it is actually a number of statements.
>> Str = num2str(A); for i = [1:size(Str, 1)] fprintf(fid, ′ %s\n′ , Str(i,:));
end
To read formatted data from a file, enter
>> A = fscanf(fid, <format string>, <size>)
The data is read from the file specified in a previous fopen command according to the format string and
put into the matrix A. The size argument, which puts an upper limit on the amount of data to be read, is
optional. If it is a scalar, or is not used at all, A is actually a vector. If it is [m n], then A is a matrix of
this size.
Advanced Input-Output
fopen(′<file name>′, Opens the file with the permission string determining how the
<permission string>) file is to be accessed. The function returns the file identifier,
which is a unique nonnegative integer attached to the file.
fclose(fid) Closes the file with the given file identifier.
fscanf(fid, <format string>) Behaves very similarly to the C command in reading data from
a file using any desired format.
fprintf(fid, <format string>, Behaves very similarly to the C command in writing data to a
<variable 1>,...) file using any desired format.
fprintf(<format string>, Behaves very similarly to the C command in displaying data on
<variable 1>,...) the screen using any desired format.
64
7. Some Useful Linear Algebra Commands
It is calculated in MATLAB by
>> cond(A, p)
where p is 1, 2, Inf, or ′ fro′ . If p = 2 the command can be shortened to
>> cond(A)
Note that the calculation of the condition number of A requires the calculation of the inverse of A.
The MATLAB command condest approximates the condition number without having to calculate this
inverse. See the discussion of this command below for further information on when it might be preferable.
Note: Sometimes we want to solve, or find the “best” approximation to, Ax = b when A ∈ Cm×n is not
a square matrix. (This is discussed in detail in subsection 5.3.) Since we still want to know the ac-
curacy of any solution, we want to generalize the condition number to nonsquare matrices. This is
done by defining the condition number of a nonsquare matrix in the 2-norm to be the ratio of the
largest to the smallest singular value of A, i.e., σ1 /σmin{m,n} .
condest
Note: Read the discussion on cond above first.
The calculation of the condition number of A ∈ Cn×n requires the calculation of its inverse. There are
two reasons this might be inadvisable.
• The calculation of A−1 requires approximately 2n3 flops, which might take too long if n is very
large.
• If A is a sparse matrix (i.e., most of its elements are zero), we discuss in section 9 how to store only
the nonzero elements of A to conserve storage. (For example, if n = 10,000 and A is tridiagonal‡,
the number of nonzero elements in A is approximately 30,000 but the total number of elements in A
†
A ∈ Rn×n is positive definite if xT Ax ≥ 0 for all x ∈ Rn and xT Ax = 0 only if x = 0. In practical terms, it
means that all the eigenvalues of A are positive. ( A ∈ Cn×n is positive definite if xH Ax ≥ 0 for all x ∈ Cn and
xT Ax = 0 only if x = 0.)
‡
A matrix is tridiagonal if its only nonzero elements occur on the main diagonal or on the first diagonal above
or below the main diagonal
65
7. Some Useful Linear Algebra Commands
is 100,000,000.) Since the inverse of a sparse matrix is generally much less sparse (in fact it may have
no zero elements at all), MATLAB may not be able to store A−1 .
The command condest calculates a lower bound to the condition number of a matrix in the 1-norm with-
out having to determine its inverse. This approximation is almost always within a factor of ten of the
exact value.
When MATLAB calculates A\b or inv(A), it also calculates condest(A). It checks if its estimate
of the condition number is large enough that A is likely to be singular. If so, it returns an error message
such as
Warning: Matrix is close to singular or badly scaled.
Results may be inaccurate. RCOND = 2.055969e-18.
where RCOND is the inverse of condest(A).
det
Let A ∈ Cn×n . The determinant of A is calculated by
>> det(A)
det(A) = 0 if and only if A is singular. However, due to round-off errors it is very unlikely that you will
obtain 0 numerically unless all the entries to A are integers. For example, consider the matrix
0.95 0.03
C= .
0.05 0.97
Av = λv ;
v is called the eigenvector corresponding to λ. There are always n eigenvalues of A, although they need
not all be distinct. MATLAB will very happily calculate all the eigenvalues of A by
>> eig(A)
It will also calculate all the eigenvectors by
>> [V, D] = eig(A)
D ∈ Cn×n is a diagonal matrix containing the n eigenvalues on its diagonal and the corresponding eigen-
vectors are found in the same columns of the matrix V ∈ Cn×n .
A matrix is defective if it has less eigenvectors than eigenvalues. MATLAB normally cannot determine
when this occurs. For example, the matrix
1 1
B=
0 1
is defective since it has two eigenvalues, both of which are 1, but it only has one eigenvector, namely
(1, 0)T . If you enter
>> B = [1 1; 0 1]; [V, D] = eig(B)
MATLAB calculates the two eigenvalues correctly, but it finds the two eigenvectors (1, 0)T and
T
(−1, 2.2×10−16 ) . Clearly the latter eigenvector should be (−1, 0)T so that, in fact, there is only one
eigenvector.
66
7. Some Useful Linear Algebra Commands
Note: If A is a sparse matrix (see Section 9), you cannot use eig. You either have to use the function
eigs or do eig(full(A)).
eigs
Note: Read the discussion on eig above first.
Frequently, you do not need all the eigenvalues of a matrix. For example, you might only need the
largest ten in magnitude, or the five with the largest real part, or the one which is smallest in magnitude,
or . . . In addition, you might need some eigenvalues of the generalized eigenvalue problem
Ax = λBx
where B is a symmetric positive definite matrix. (If B is complex, it must be Hermetian.) eigs can do
all of this. Of course, this means that there are numerous possible arguments to this function so read the
documentation carefully.
Why not just use eig anyway? Calculating all the eigenvalues of A ∈ Rn×n requires (very) approx-
imately 10n3 flops, which can take a very long time if n is very large. On the other hand, calculating
only a few eigenvalues requires many, many fewer flops. If A is a full matrix, it requires cn2 flops where
c is of “reasonable” size; if A is a sparse matrix (see Section 9), it requires cn flops.
Note: If A is sparse, you cannot use eig — you will first have to do eig(full(A)).
Also, this command generates lots of diagnostic output. To calculate the largest 3 eigenvalues of A in
magnitude without generating any diagnostics, enter
>> op.disp = 0
>> eigs(A, 3, ′ LM′ , op)
( op.disp is a structure, which was discussed in section 3.4.)
inv
To calculate the inverse of the square matrix A ∈ Cn×n enter
>> inv(A)
The inverse of A, denoted by A−1 , is a matrix such that AA−1 = A−1 A = I, where I ∈ Rn×n is the iden-
tity matrix. If such a matrix exists, it must be unique.
MATLAB cannot always tell whether this matrix does, in fact, exist. For example, the matrix
1 2
A=
2 4
does not have an inverse. If you try to take the inverse of this matrix, MATLAB will complain that
Warning: Matrix is singular to working precision.
It will display the inverse matrix, but all the entries will be Inf.
The above matrix was very simple. The matrix
1 2 3
A = 4 5 6 (7.1)
7 8 9
also does not have an inverse. If you ask MATLAB to calculate the inverse of A, it will complain that
Warning: Matrix is close to singular or badly scaled.
Results may be inaccurate. RCOND = 2.055969e-18.
( RCOND is the inverse of a numerical approximation to the condition number of A; see condest above.)
That is, MATLAB is not positive that A is singular, because of round-off errors, but it thinks it is likely.
However, MATLAB still does try to calculate the inverse. Of course, if you multiply this matrix by A
the result is nowhere close to I. (Try it!) In other words, be careful — and read (and understand) all
67
7. Some Useful Linear Algebra Commands
warning messages.
lu
Let A ∈ Cn×n . Then there exists an upper triangular matrix U, a unit lower triangular matrix L † , and
a permutation matrix P ‡ such that
LU = PA .
The MATLAB command lu calculates these matrices by entering
>> [L, U, P] = lu(A)
If A is invertible, all the elements of U on the main diagonal are nonzero. If you enter
>> A = [1 2 3; 4 5 6; 7 8 9]; [L, U, P] = lu(A)
where A is the singular matrix defined earlier, u33 should be zero. Entering
>> U(3,3)
displays 1.1102e-16, which clearly should be zero as we discussed in subsection 1.5.
Note: This is the first time we have had a function return more than one argument. We discuss this no-
tation in detail in section 8.3. For now, we simply state that when [V, D] occurs on the right side
of the equal sign it means the matrix whose first columns come from V and whose last columns
come from D. However, on the left side of the equal sign it means that the function returns two
arguments where the first is stored in the variable V and the second in D.
norm
The norm of a vector or matrix is a nonnegative real number which gives some measure of the “size” of
the vector or matrix. The p-th norm of a vector is defined by
!1/p
Xn
|xi |p if p ∈ [1, ∞)
kxkp = i=1
max |x | if p = ∞ .
i
1≤i≤n
68
7. Some Useful Linear Algebra Commands
>> null(A)
orth
Let A ∈ Cn×n . We can calculate an orthonormal basis for the columns of A by
>> orth(A)
qr
Let A ∈ Rm×n . Then there exists an orthogonal matrix Q ∈ Rm×m † and an upper triangular matrix
R ∈ Rm×n such that
A = QR .
(If A ∈ Cm×n then there exists an unitary matrix Q ∈ Cm×m and an upper triangular matrix R ∈ Cm×n
such that A = QR.) We calculate Q and R in MATLAB by entering
>> [Q, R] = qr(A)
It is frequently preferable to add the requirement that the diagonal elements of R be decreasing in magni-
tude, i.e., |ri+1,i+1 | ≤ |ri,k | for all i. In this case
AE = QR
A = UΣVT
where U ∈ Rm×m and V ∈ Rn×n are orthogonal matrices and Σ ∈ Rm×n is a diagonal matrix (although
not necessarily square) with real nonnegative elements in decreasing order. That is,
σ1 ≥ σ2 ≥ . . . ≥ σmin{m,n} ≥ 0 .
(If A ∈ Cm×n then U ∈ Cm×m and V ∈ Cn×n are unitary matrices and Σ ∈ Rm×n is a diagonal matrix
with real nonnegative elements in decreasing order.) These matrices are calculated by
>> [U, S, V] = svd(A)
The diagonal elements of Σ are called the singular values of A. Although A need not be a square ma-
trix, both AT A ∈ Rn×n and AAT ∈ Rm×m are square symmetric matrices. (If A is complex, AH A and
AAH are both square Hermitian matrices.) Thus, their eigenvalues are nonnegative.‡ Their nonzero eigen-
values are the squares of the singular values of A.§ In addition, the eigenvectors of AT A are the columns of
†
Q ∈ Rm×m is orthogonal if Q−1 = QT . ( Q ∈ Cm×m is unitary if Q−1 = QH .)
‡
The eigenvalues of a real square symmetric matrix are nonnegative. (The eigenvalues of a complex square
Hermitian matrix are real and nonnegative.)
§
For example, if m > n there are n singular values and their squares are the eigenvalues of AT A. The m
eigenvalues of AAT consist of the squares of these n singular values and m−n additional zero eigenvalues.
69
7. Some Useful Linear Algebra Commands
V and those of AAT are the columns of U. (If A is complex, the eigenvectors of AH A are the columns of
V and those of AAH are the columns of U.)
The best numerical method to determine the rank of A is to use its singular values. For example, to see
that
1 2 3 4
A = 5 6 7 8
9 10 11 12
has rank 2, use the svd command to find that the singular values of A are 25.4368, 1.7226,
and 8.1079×10−16 . Clearly the third singular value should be 0 and so A has 2 nonzero singular values
and so has a rank of 2. On the other hand, the Hilbert matrix of order 15 has singular values
according to MATLAB. Following Principle 1.2, you can see there is no separation between the singular
values which are clearly not zero and the ones which are “close to” eps. Thus, you cannot conclude that
any of these singular values should be set to 0. Our “best guess” is that the rank of this matrix is 15.†
†
In fact, it can be proven that the Hilbert matrix of order n is nonsingular for all n, and so its rank is
truly n. However, if you enter
>> rank( hilb(15) )
you obtain 12, so that MATLAB is off by three.
70
8.1. Flow Control and Logical Variables
8. Programming in MATLAB
Using the commands we have already discussed, MATLAB can do very complicated matrix operations.
However, sometimes there is a need for finer control over the elements of matrices and the ability to test,
and branch on, logical conditions. Although prior familiarity with a high-level programming language is
useful, MATLAB’s programming language is so simple that it can be learned quite easily and quickly.
MATLAB has four flow control and/or branching instructions: for loops, while loops, if-else
branching tests, and switch branching tests.
Notation: All of these instructions end with an end statement, and it is frequently difficult to determine
the extent of these instructions. Thus, it is very important to use indentation to indicate the
structure of a code, as we do in the remainder of this tutorial. This greatly increases the read-
ability of the code for human beings.
The general form of the for loop is
>> for <variable> = <expression>
<statement>
...
<statement>
end
where the variable is often called the index of the loop. The elements of the row vector <expression> are
stored one at a time in the variable and then the statements up to the end statement are executed.† For
example, you can define the vector x ∈ Rn where xi = i sin(i2 π/n) by
>> x = zeros(n, 1);
>> for i = 1:n
x(i) = i * sin( i 2 *pi/n );
end
ˆ
(The first line is not actually needed, but it allows MATLAB to know exactly the size of the final vector
before the for loops begin. This saves computational time and makes the code more understandable; it is
discussed in more detail in section 8.5.) In fact, the entire for loop could have been entered on one line
as
>> for i = 1:n x(i) = i * sin( i 2 *pi/n ); end
ˆ
However, for readability it is best to split it up and to indent the statements inside the loop. Of course,
you can also generate the vector by
>> x = [1:n]′ .* sin( [1:n]′ . 2 *pi/n )
ˆ
which is certainly “cleaner” and executes much faster in MATLAB. √
Warning: In using i as the index of the for loop, i has just been redefined to be n instead of −1 .
Caveat emptor!
A more practical example of the use of a for loop is the generation of the Hilbert matrix of order n,
which we have already discussed a number of times. This is easily done using two for loops by
>> H = zeros(n);
>> for i = 1:n
for j = 1:n
H(i,j) = 1/(i + j - 1);
end
end
Warning: In using i √and j as the indices of the for loops, i and j have just been redefined to be n
instead of −1 . Caveat emptor!
†
<expression> can be a matrix in which case each column vector is stored one at a time in i.
71
8.1. Flow Control and Logical Variables
for loops often have branches in them. For this we need the if branch, which we now describe. The
simplest form of the if statement is
>> if <logical expression>
<statement>
...
<statement>
end
where the statements are evaluated as long as the <logical expression> is true. The
<logical expression> is generally of the form
<arithmetic expression-left> rop <arithmetic expression-right>
where rop is one of the r elational operators shown below. Some examples of logical expressions are
i == 5
x(i) >= i
imag(A(i,i)) = 0
˜
sin(1) - 1 > x(1) + x(i) 3
ˆ
Warning: String variables cannot be easily compared by == or =.† Instead, if a and b are text vari-
ables, enter ˜
>> strcmp(a, b)
The result is true if the two character strings are identical and false otherwise.
Relational Operators
72
8.1. Flow Control and Logical Variables
ated if the <logical expression 2> is true, etc. The final else statement is not required. If it occurs
and if none of the logical expressions is true, statement group r+1 is evaluated. If it does not occur and if
none of the logical expressions is true, then none of the statement groups are executed.
When a logical expression such as
>> i == 5
is evaluated, the result is either the logical value “TRUE” or “FALSE”. MATLAB calculates this as a nu-
merical value which is returned in the variable ans. The value is 0 if the expression is false and 1 if it is
true.
MATLAB also contains the logical operators “AND” (denoted by “&”), “OR” (denoted by “ |”),
“NOT” (denoted by “ ”), and “EXCLUSIVE OR” (invoked by the function xor ). These act on false
˜
or true statements which are represented by numerical values: zero for false statements and nonzero for
true statements. Thus, if a and b are real numbers then
• the relational equation
>> c = a & b
means that c is true (i.e., 1 ) only if both a and b are true (i.e., nonzero); otherwise c is false
(i.e., 0 ).
• the relational equation
>> c = a | b
means that c is true (i.e., 1 ) if a and/or b is true (i.e., nonzero); otherwise c is false (i.e., 0 ).
• the relational equation
>> c = a
˜
means that c is true (i.e., 1 ) if a is false (i.e., 0 ); otherwise c is false (i.e., 0 ).
• the relational command
>> c = xor(a, b)
means that c is true (i.e., 1 ) if exactly one of a and b is true (i.e., nonzero); otherwise c is false
(i.e., 0 ).
In the above statements c is a logical variable which has the logical value “TRUE” or “FALSE”. Fre-
quently — but not always — the variable can be set by c = 1 or c = 0; but c is now not a logical
variable, but a numerical variable. Frequently — but not always — a numerical variable can be used in-
stead of a logical variable. The preferred ways to set a logical variable are the following. The logical vari-
able can be set by c = logical(1) or c = logical(0) — and now c is a logical variable. A simpler
way to set the logical variable c is c = true or c = false.
There are second logical operators “AND” (denoted by && ) and “OR” ( || ) which are rarely needed.
The statement
>> c = a && b
returns a (scalar) logical true if both inputs evaluate to true (so if they are variables they both must be
scalars). The difference from & is that if a is false then b is not evaluated. Similarly,
>> c = a || b
returns a (scalar) logical true if either input evaluates to true. If a is true then b is not evaluated
(as in C, C++, and Java).
Logical Operators
73
8.1. Flow Control and Logical Variables
The second MATLAB loop structure is the while statement. The general form of the while loop is
>> while <logical expression>
<statement>
...
<statement>
end
where the statements are executed repeatedly as long as the <logical expression> is true. For exam-
ple, eps can be calculated by
>> ep = 1;
>> while 1 + ep > 1
ep = ep/2;
end
>> eps = 2*ep
It is possible to break out of a for loop or a while loop from inside the loop by using the break
command as in C. This terminates the execution of the innermost for loop or while loop.
The continue statement is related to break. It causes the next iteration of the for or while loop
to begin immediately.
The switch command executes particular statements based on the value of a variable or an expression.
Its general form is
>> switch <variable or expression>
case <Value 1>,
<statement group 1>
case {<Value 2a>, <Value 2b>, <Value 2c>, ..., <Value 2m>},
<statement group 2>
...
case <value n>,
<statement group r>
otherwise,
<statement group r+1>
end
where statement group 1 is evaluated if the variable or expression has <Value 1>, where statement group
2 is evaluated if the variable or expression has values <Value 2a> or <Value 2b> or <Value 2c>, etc.
(Note that if a case has more than one value, then all the values must be surrounded by curly brackets.)
The final otherwise is not required. If it occurs and if none of the values match the variable or expres-
sion, then statement group r+1 is evaluated. If it does not occur and if none of the values match, then
none of the statement groups are executed.
Warning: The switch command is different in MATLAB than in C in two ways:
First, in MATLAB the case statement can contain more than one value; in C it can only con-
tain one.
And, second, in MATLAB only the statements between the selected case and the following one
or the following otherwise or end (whichever occurs first) are executed; in C all the state-
ments following the selected case are executed up to the next break or the end of the block.
74
8.2. Matrix Relational Operators and Logical Operators
Flow Control
true Generates a logical matrix with all elements having the logical value true.
Use true or true(n) or true(m, n).
false Generates a logical matrix with all elements having the logical value false.
Use false or false(n) or false(m, n).
75
8.2. Matrix Relational Operators and Logical Operators
and now we want to know how many elements of F are greater than 0.5. We can code this as
>> nr elements = 0;
>> for i = 1:m
for j = 1:n
if F(i,j) > 0.5
nr elements = nr elements + 1;
end
end
end
>> nr elements
However, it can be coded much more simply, quickly, and efficiently since the relational expression
>> C = F > 0.5;
or, to make the meaning clearer,
>> C = (F > 0.5);
generates the matrix C where n
1 if fij > 0.5
cij =
0 otherwise.
Since the number of ones is the result we want, simply enter
>> sum( sum( F > 0.5 ) )
or
>> sum(sum(C))
or
>> sum(C(:))
And suppose we want to replace all the elements of F which are ≤ 0.5 by zero. This is easily done by
>> F = F.*(F > 0.5)
The relational expression F > 0.5 generates a matrix with zeroes in all the locations where we want to
zero the elements of F and ones otherwise. Multiplying this new matrix elementwise with F zeroes out all
the desired elements of F. We can also replace all the elements of F which are ≤ 0.5 by −π using
>> C = (F > 0.5)
>> F = F.*C - pi*( C)
˜
Shortly we will present two easier ways to do this.
There is even a MATLAB function which determines the location of the elements of a vector or a ma-
trix where some property is satisfied. The command
>> find(x)
generates a column vector containing the indices of x which are nonzero. (Recall that nonzero can also
mean “TRUE” so that this command finds the elements where some condition is true.) For example, if
x = (0, 4, 0, 1, −1, 0, π)T then the resulting vector is (2, 4, 5, 7)T . We can add 10 to every nonzero ele-
ment of x by
>> ix = find(x);
>> x(ix) = x(ix) + 10;
Note: If no element of the vector is nonzero, the result is the empty matrix [].
find can also be applied to a matrix. The command
>> find(A)
first transforms A to a column vector (i.e., A(:) ) and then determines the locations of the nonzero ele-
ments. Instead we can work with the matrix directly by entering
>> [iA, jA] = find(A)
The two column vectors iA and jA contain the rows and columns, respectively, of the nonzero elements.
We can also find the locations of the nonzero elements and their values by
>> [iA, jA, valueA] = find(A)
As a simple example of the power of this command we can add 10 to every nonzero element of A by
>> ijA = find(A); A(ijA) = A(ijA) + 10
Note: ijA contains the locations of the nonzero elements of A when considered to be a column vector.
Since A(k) has no meaning in linear algebra if k is a scalar (since an element of A requires both
76
8.2. Matrix Relational Operators and Logical Operators
a row and a column number), MATLAB assumes that this is the element number of A as a column
vector.
We can also find the elements of a vector or a matrix which satisfy a more general property than being
nonzero. For example, to find the locations of all the elements of x which are greater than 5 enter
>> find(x > 5)
and to find the locations of all the elements of x which are greater than 5 and less than 8 enter
>> find( (x > 5) & (x < 8) )
We can find the number of elements which satisfy this last property by entering
>> length( find( (x > 5) & (x < 8) ) )
Previously, we showed how to replace all the elements of F which are ≤ 0.5 by −π. A method which
does not require any multiplication is
>> ijF = find(F <= 0.5);
>> F(ijF) = -pi
or even
>> F( find(F <= 0.5) ) = -pi
The “beauty” of MATLAB commands such as these is they are so easy to use and to understand (once
you get the hang of it) and they require so few keystrokes.
Another, slightly different method uses the matrix
>> D = (F <= 0.5)
rather than the vector ijF. Recall that ijF is a vector which contains the actual locations of the el-
ements we want to zero out, whereas D is a matrix of ones and zeroes which explicitly shows which el-
ements should be zeroed. We can use D to determine which elements of F should be replaced by zero
by
>> F(D) = -pi
(We can even use
>> F(F <= 0.5) = -pi
to combine everything into a single statement.) This requires some explanation. The matrix D is being
used here as a “mask” to determine which elements of F should be replaced by −π: for every element of
D which is nonzero, the corresponding element of F is replaced by −π; for every element of D which is
zero, nothing is done.
How does MATLAB know that D should be used to “mask” the elements of F? The answer is that D
is a logical matrix because it was defined using a logical operator, and only logical matrices and vectors
can be used as “masks”. To see that D is a logical variable and F is not, enter
>> islogical(D)
>> islogical(F)
And to see what happens when you try to use a non-logical variable as a “mask”, enter
>> F(2*D)
We can also convert a non-logical variable to a logical one by using the MATLAB command logical.
To explain logical arrays more clearly, we take a specific and very simple example. Enter
>> v = [0:.25:1];
>> c = (v >= .5);
so that v = [0 .25 .5 .75 1.0] and c = [0 0 1 1 1] where “0” denotes false and “1” denotes true.
The result of
>> v(c)
is [.5 .75 1.0]. That is, c is a logical vector and v(c) deletes the elements of v which are “false”.
On the other hand
>> iv = find(v < .5);
returns iv = [1 2] and
>> v(iv) = [];
returns v = [.5 .75 1.0]. The difference between c and iv is that c is a logical vector and iv is a
scalar vector. If you enter
>> v([0 0 1 1 1]) % WRONG
instead of
>> v(c)
77
8.2. Matrix Relational Operators and Logical Operators
Logical Functions
all True if all the elements of a vector are true; operates on the columns of a matrix.
any True if any of the elements of a vector are true; operates on the columns of a
matrix.
exist(′<name>′) False if this name is not the name of a variable or a file. If it is, this function re-
turns:
1 if this is the name of a variable,
2 if this is the name of an m-file,
5 if this is the name of a built-in MATLAB function.
find The indices of a vector or matrix which are nonzero.
logical Converts a numeric variable to a logical one.
ischar True for a character variable or array.
isempty True if the matrix is empty, i.e., [].
isfinite Generates a matrix with 1 in all the elements which are finite (i.e., not Inf or
NaN ) and 0 otherwise.
isinf Generates a matrix with 1 in all the elements which are Inf and 0 otherwise.
islogical True for a logical variable or array.
isnan Generates a matrix with 1 in all the elements which are NaN and 0 otherwise.
78
8.3. Function M-files
†
If you are worried because passing arguments by value might drastically increase the execution time of the
function, we want to reassure you that this does not happen. To be precise, MATLAB does not actually pass all
the input arguments by value. Instead, an input variable is only passed by value if it is modified by the func-
tion. If an input variable is not modified, it is passed “by reference”. (That is, the input argument is the actual
variable used in the calling statement and not a local copy.) In this way you get the benefit of “call by value”
without any unnecessary overhead. And how does MATLAB know if an input argument is modified? It can only
be modified if it appears on the left-hand side of an equal sign inside the function!
79
8.3. Function M-files
immediately follow the first line are special: they appear on the screen when you type
>> help <function name>
Before discussing functions at great length, there is one technical detail it is important to consider be-
fore it trips you up: how does MATLAB find the m-files you have created? Since MATLAB contains
thousands of functions, this is not an easy task. Once MATLAB has determined that the word is not a
variable, it searches for the function in a particular order. We show the order here and then discuss the
items in detail throughout this subsection.
(1) It checks if <function name> is a built-in function (i.e., coded in C).
(2) It checks if <function name> is a function, i.e., the primary function, a subfunction, or a nested
function in the current scope, in the current file. (We discuss all these terms shortly.)
(3) It checks if the file <function name>.m exists in the current directory.
(4) It checks if the current directory has a subdirectory called “private”; if it does, MATLAB checks if
the file <function name>.m exists in this subdirectory.
(5) It searches the directories in the search path for the file <function name>.m.
Note from (3) that MATLAB searches in the current directory for the function by searching for the m-
file with the same name. If the m-file is not in the current directory, the simplest way to enable MATLAB
to find it is have the subdirectory in your search path. If you type
>> path
you will see all the directories that are searched. If you have created a subdirectory called “matlab” in
your main dire
tory, this is usually the first directory searched (unless the search path has been modified).
Thus, you can put your m-files in this subdirectory and be sure that MATLAB will find them. You can
also add directories to the search path by
>> path(′ new directory′, path)
or
>> path(path, ′ new directory′)
(The former puts “new directory” at the beginning of the search path while the latter puts it at the end.)
Warning: When you begin a MATLAB session, it always checks if the subdirectory “matlab” exists in
your main directory. If you create this subdirectory after you start a MATLAB session, it will
not be in the search path.
Now we return to our discussion of creating functions. We begin with a simple example of a function file
which constructs the Hilbert matrix (which we have already used a number of times).
function H = hilb local(n)
% hilb local: Hilbert matrix of order n (not from MATLAB)
% hilb local(n) constructs the n by n matrix with elements 1/(i+j-1).
% This is one of the most famous examples of a matrix which is
% nonsingular, but which is very badly conditioned.
H = zeros(n);
for i = 1:n
for j = 1:n
H(i,j) = 1/(i+j-1);
end
end
The input argument is n and the output argument is H. The first line of the documentation includes the
name of the function as well as a brief description that lookfor uses. The following lines of documenta-
tion also appear on the screen if we enter
>> help hilb local
Note: The above code is not presently used in MATLAB (although it was in early versions.) The actual
MATLAB code for this function is shown in subsection 8.5.
We follow by defining H to be an n×n matrix. Although not essential, this statement can greatly in-
crease the speed of the function because space can be preallocated for the matrix. For example, consider
80
8.3. Function M-files
We can “spruce” this function up to have default values for ξ and a and also to calculate its derivative
81
8.3. Function M-files
and, again, all the values can be calculated in one call to spruce.
We have now presented all the essential features of the MATLAB programming language, and it cer-
tainly is a “minimal” language. MATLAB can get away with this because most matrix operations can
be performed directly — unlike in most other programming languages. You only need to write your own
function if MATLAB cannot already do what you want. If you want to become proficient in this language,
simply use the type command to look at the coding of some functions.
Now that we have discussed the essentials of programming in MATLAB, it is necessary to discuss how
to program correctly. When you are entering one statement at a time in the text window, you immediately
see the result of your calculation and you can determine whether or not it is correct. However, in an m-file
you have a sequence of statements which normally end with semicolons so that you do not see the inter-
mediate calculations. What do you do if the result is incorrect? In other words, how do you debug your
m-file?
There are a number of simple techniques you can use and we discuss them in turn. In a script m-file
intermediate calculations are normally not printed out, but they are still available to look at. This can fre-
quently lead to an understanding of where the calculation first went wrong. However, this is not true of
function m-files since all the local variables in the function disappear when the function ends. Of course,
with any m-file you can selectively remove semicolons so that intermediate results are printed out. This is
probably the most common method of debugging programs — no matter what programming language is
being used.
When loops are involved (either using for or while statements), the printed output can seem to be
endless (and it is endless if you are in an infinite loop). And it is usually impossible to read the out-
put since it is zipping by at (what appears to be) nearly the speed of light! The pause command can
slow down or even stop this output. By itself pause stops the m-file until some key is pressed while
82
8.3. Function M-files
pause(<floating-point number>) pauses execution for this many seconds — or fractions of a second.
(This is computer dependent, but pause(0.01) should be supported on most platforms.) You can even
turn these pauses on and off by using pause on and pause off.
The echo command is also useful for debugging script and function files, especially when if state-
ments are involved. Typing
>> echo on
turns on the echoing of statements in all script files (but not printing the results if the statements end
with semicolons), and echo off turns echoing off again. However, this does not affect function files. To
turn echoing on for a particular function, type
>> echo <function name> on
and to turn echoing on for all functions, type
>> echo on all
The keyboard command is also very useful for debugging m-files. It stops execution of the m-file,
similar to the pause command. However, it returns complete control to the user to enter any and all
MATLAB commands. In particular, you can examine any variables in the function’s workspace. If de-
sired, you can also change the value of any of these variables. The only way you will recognize this is not a
“standard” MATLAB session is that the prompt is
K>>
for Keyboard. To terminate the “keyboard” session and return control to the m-file, enter
K>> return
To terminate both the “keyboard” session and the execution of the m-file, enter
K>> dbquit
When using the debugger, you are not running your program. Instead, you are running the debugger
which is running your program. Thus, many of the commands you enter are commands for the debugger;
to distinguish these commands from “normal” MATLAB commands they begin with db. There are two
ways to run the debugger: you can type the debugger commands into the workspace, or in a MATLAB
window you can use the mouse and click on the commands.
In addition, you are still in the workspace so many MATLAB commands can still be executed. For ex-
ample, to see the values of variables just type the variable name into the workspace. (Alternatively, you
can move the mouse over the variable name in the window and its description and value(s) will be shown.)
Also, you can run most MATLAB commands as long as you do not try to create new variables (but you
can modify existing variables).
We will not discuss the commands in this debugger in detail, but only provide a brief description of
each one, because these are similar to commands in any debugger. If you have experience with using a
debugger, help or doc will give you complete details.
Debugging Commands
83
8.3. Function M-files
Now we want to discuss the arguments in a MATLAB function, since they are are used somewhat differ-
ently than in other programming languages. For example, in
function out = funct1(a, t)
a and t are the input arguments and out is the output argument. Any and all input variables are lo-
cal to the function and so can be modified without affecting the arguments when the function funct1 is
called. (This is true no matter what type of variables they are.) In
function [out1, out2, out3] = funct2(z)
z is the only input argument and there are three output arguments, each of which can be any type of vari-
able. There is no requirement that all three of these output arguments actually be used. For example, the
calling statement might be any of the following:
>> art = funct2(1.5)
>> [physics, chemistry] = funct2([1 2 3])
>> [math, philosophy, horticulture] = funct2(reshape([1:30], 6, 5))
(just to be somewhat silly).
In a programming language such as C, Fortran, or Pascal funct1 would be written in a form such as
function funct1(a, t, out)
or even as
function funct1(a, out, t)
Similarly, funct2 would be written as
function funct2(z, out1, out2, out3)
or even as
function funct2(out3, out2, z, out1)
It would be up to the user to control which were the input arguments, which were the output arguments,
and which were both (i.e., one value on input and another on output). In MATLAB input arguments oc-
cur on the right side of the equal sign and output arguments occur on the left. Arguments which are to be
modified by the function must occur on both sides of the equal sign in the calling statement. For example,
in funct2 if z is modified and returned in out1 then the calling sequence should be
>> [a, b, c] = funct2(a)
where a appears on both sides of the equal sign. (There is an alternative to this awkward use of param-
eters which are modified by the function: you can make a variable global, as we discuss at the end of this
section. However, this is not usually a good idea.)
There is another difference between MATLAB and most other programming languages where the type
of each variables has to be declared, either explicitly or implicitly. For example, a variable might be an
integer, a single-precision floating-point number, a double-precision floating-point number, a character
string, etc. In MATLAB, on the other hand, there is no such requirement. For example, the following
statements can follow one another in order and define x to be a string variable, then a vector, then a
scalar, and finally a matrix.
>> x = ′ WOW?′
>> x = x + 0
>> x = sum(x)
>> x = x*[1 2; 3 4]
It is particularly important to understand this “typelessness” when considering output arguments. For ex-
ample, there are three output arguments to funct2 and any of them can contain any type of variable. In
fact, you can let the type of these arguments depend on the value or type of the input argument. This is
probably not something you should want to do frequently, but it is sometimes very useful.
Occasionally, there is a need to pass values from the workspace to a function or to pass values between
different functions without using the input arguments. (As we discussed earlier, this may be desirable if a
variable is modified by a function.) In C this is done by using global variables. MATLAB also has global
variables which are defined by declaring the variables to be global using
>> global <variable 1> <variable 2> <variable 3> ...
By the way, a variable is a global variable if it appears in a global statement and a local variable if it does
not. (Note that a variable can be a local variable in one function and a global variable in another.)
Warning: Spaces, not commas, must separate the variables in a global statement
This statement must appear in every function which is to share the variables. If the workspace is also to
share these variables, you must type this statement (or be put into a script file which you execute) before
84
8.3. Function M-files
85
8.3. Function M-files
†
They are similar to internal functions in Fortran 95, and they are somewhat related to internal classes in Java
— but not in C++.
86
8.3. Function M-files
A nested function is within another function. For example, the nested functions nest 1 and nest 2 are
nested within the primary function nested ex, and the nested function nest 3 is nested within the sub-
function sub 1. (Nested functions can have other nested functions within them, but enough is enough.)
The important concept to understand when using nested functions is the scope of variables in the func-
tion m-file. The scope of a variable is the context within which it is defined, i.e., where it can be set,
modified, and used. Now let us consider a function workspace. The workspace of the primary function
is also independent of the workspace of each subfunction. However, since a nested function is within one
or more other functions, it is within the workspace of this function or these functions. In the function
nested ex the nested functions nest 1 (lines 5–12) and nest 2 (lines 13–19) have access to the vari-
ables p1, p2, and p3 of the primary function (lines 1–20). They also have access to the subfunction
sub 1 (lines 20–27) as shown in line 10. Note that nest 2 also has access to nest 1 as shown in line 11.
It is very important to understand that a nested function also has its own workspace. For example, the
variables n1a and n1b in nest 1, n2a in nest 2, and n3a and n3b in nest 3 are local to their re-
spective functions. In particular, n1a cannot be accessed in nest 2 as shown in line 17. (If n1a really
needs to be passed to nest 2, then it must be in the workspace of nested ex. This could be done by
adding n1a = 0 after line 3.) Finally, note that nested functions can also have arguments passed in the
argument list as in nest 3 on line 24.
Now let us return to the topic of how MATLAB finds a function. As we stated previously (but did not
discuss), when a function is called from within an m-file, MATLAB first checks if the function named is
the primary function or a subfunction in the current file. If it is not, MATLAB searches for the m-file in
the current directory. Then MATLAB searches for a private function by the same name (described below).
Only if all this fails does MATLAB use your search path to find the function. Because of the way that
MATLAB searches for functions, you can replace a MATLAB function by a subfunction in the current
87
8.4. Odds and Ends
m-file — but make sure you have a good reason for doing so!†
In the previous paragraph we described how to create a subfunction to replace one function by another
of the same name. There is another, more general, way to handle this replacement: you can create a sub-
directory in your current directory with the special name “private”. Any m-files in this subdirectory are
visible only to functions in the current directory. The functions in this subdirectory are called private
functions. For example, suppose we are working in the directory “personal” and have created a number of
files which use rref to solve linear systems. And suppose we have written our own version of this com-
mand, because we think we can calculate the reduced row echelon of a matrix more accurately. The usual
way to test our new function would be to give it a new name, say myrref, and to change the call to rref
in every file in this directory to myrref. This would be quite time-consuming, and we might well miss
some. Instead, we can code and debug our new function in the subdirectory “private”, letting the name of
our new function be rref and the name of the m-file be rref.m. All calls in the directory to rref will
use the new function we are testing in the subdirectory “private”, rather than MATLAB’s function. Even
more important, any function in any other directory which calls rref will use the MATLAB function and
not our “new, improved version”.
Function Commands
†
Since MATLAB contains thousands of functions, this means you do not have to worry about one of your sub-
functions being “hijacked” by an already existing function. When you think up a name for a primary function
(and, thus, for the name of the m-file) it is important to check that the name is not already in use. However,
when breaking a function up into a primary function plus subfunctions, it would be very annoying if the name of
every subfunction had to be checked — especially since these subfunctions are not visible outside the m-file.
88
8.4. Odds and Ends
executes all three statements contained in the string s. In addition, if an executed statement generates
output, this is the output of eval. For example, if we type
>> A = zeros(5,6);
>> [m, n] = eval(′size(A)′);
then m is 5 and n is 6.
There is a very practical applications for this command since it can can combine a number of state-
ments into one. For example, suppose we want to work with the columns of the Hilbert matrix of size n
and we want to create variables to hold each column, rather than using H(:,i). We can do this by hand
by typing
>> c1=H(:,1);
>> c2=H(:,2);
...
which gets tiring very quickly. Instead, we can do this by typing
>> for i = 1:n
eval( [′ c′ num2str(i) ′ =H(:,i)′] )
end
This requires some explanation. It might be a little clearer if we separate the statement inside the for
loop into two statements by
s = [′ c′ , num2str(i), ′ =H(:,i)′]
eval(s)
(where we include commas in the first statement for readability). s is a text variable which contains
c1=H(:,1) the first time the loop is executed, then c2=H(:,2) the second time, etc. (To understand
how s is created, recall that s is really just a row vector with each element containing the ASCII repre-
sentation of the corresponding character.)
Finally, there is a very esoteric application for this command that allows it to catch errors. This is sim-
ilar to the “catch” and “throw” commands in C++ and Java. To use this feature of eval, call it using
two arguments as
>> eval(<try string>, <catch string>)
The function executes the contents of <try string> and ignores the second argument if this execution
succeeds. However, if it fails then the contents of <catch string> are executed. (This might be a call
to a function which can handle the error.) If there is an error, the command lasterr returns a string
containing the error message generated by MATLAB.
A MATLAB command which is occasionally useful in a function is feval. It executes a function, usu-
ally defined by an m-file, whose name is contained in a string by
>> feval(<string>, x1, x2, ..., xn)
(See below for other ways to pass the function in the argument list.) Here x1, x2, ..., xn are the
arguments to the function. For example, the following two statements are equivalent
>> A = zeros(5,6)
>> A = feval(′zeros′, 5, 6)
Suppose that in the body of one function, say sample, we want to execute another function whose
name we do not know. Instead, the name of the function is to be passed as an argument to sample.
Then feval can be used to execute this text variable. For example, suppose in function sample we want
to generate either linear or logarithmic plots. We can input the type of plot to use by
function sample(<type of plot>)
...
feval(<type of plot>, x, y1, x, y2, ′ --′ , xx, y3, ′ :′ )
...
There are two common ways to pass the function <type of plot> in the argument list:
(1) use a character string, e.g., feval( ′ loglog ′ , ...), or
(2) use a function handle, e.g., feval(@logval, ...), or
Note: eval and feval serve similar purposes since they both evaluate something. In fact, feval can al-
ways be replaced by eval since, for example, feval( ′ zeros ′ , 5, 6) can always be replaced by
eval( ′ zeros(5,6) ′ ). However, there is a fundamental difference between them: eval requires
89
8.5. Advanced Topic: Vectorizing Code
the MATLAB interpreter to completely evaluate the string, whereas feval only requires MATLAB
to evaluate an already existing function. feval is much more efficient, especially if the string must
be evaluated many times inside a loop.
90
8.5. Advanced Topic: Vectorizing Code
end y ). It is not difficult to write such a code using flow control statements:
function ylen intvl = get intervals slow(y, R)
n = length(y);
if y(1) > R % check if the first point is in an interval
in intvl = 1; % yes
intvl nr = 1;
yin(intvl nr) = 1;
else
in intvl = 0; % no
intvl nr = 0;
end
for i = [2: n] % check the rest of the points
if in intvl == 1 % we are currently in an interval
if y(i) <= R % check if this point is also in the interval
yout(intvl nr) = i; % no, so end the interval
in intvl = 0;
end
else % we are currently not in an interval
if y(i) > R % check if this point is in the next interval
intvl nr = intvl nr + 1; % yes, so begin a new interval
yin(intvl nr) = i;
in intvl = 1;
end
end
end
if y(1) > R % check if we have begun in an interval
yin(1) = []; % yes, so delete it
yout(1) = [];
end
if length(yin) > length(yout) % check if we have ended in an interval
yin( length(yin) ) = []; % yes, so delete it
end
ylen intvl = yout - yin;
When completed, yin and yout contain the element numbers where an interval begins and where it
ends, respectively. This is straightforward — but very slow if y has millions of elements.
91
9. Sparse Matrices
Finally, the question remains: is the time savings significant? For “large” y the CPU time is reduced by
approximately 50.
profile Profile the execution time of a MATLAB code. This is very useful for improving the
performance of a code by determining where most of the CPU time is spent.
9. Sparse Matrices
Many matrices that arise in applications only have a small proportion of nonzero elements. For exam-
ple, if T ∈ Cn×n is a tridiagonal matrix, then the maximum number of nonzero elements is 3n−2. This
is certainly a small proportion of the total number of elements, i.e., n2 , if n is “large” (which commonly
means in the hundreds or thousands or . . . )
For full matrices (i.e., most of the elements are nonzero) MATLAB stores all the elements, while for
sparse matrices (i.e., most of the elements are zero) MATLAB only stores the nonzero elements: their
locations (i.e., their row numbers and column numbers) and their values. Thus, sparse matrices require
much less storage space in the computer. In addition, the computation time for matrix operations is sig-
nificantly reduced because zero elements can be ignored.
Once sparse matrices are generated, MATLAB is completely responsible for handling all the details
of their use: there are no special commands needed to work with sparse matrices. However, there are a
number of commands which are inappropriate for sparse matrices, and MATLAB generally generates a
warning message and refers you to more appropriate commands. For example, cond(S) has to calculate
S−1 , which is generally a full matrix; instead, you can use condest which estimates the condition number
by using Gaussian elimination. You have two alternatives: first, use full to generate a full matrix and
use the desired command; or, second, use the recommended alternative command.
There are two common commands in MATLAB for creating sparse matrices. You can enter all the
nonzero elements of S ∈ Cm×n individually by
92
9. Sparse Matrices
>> S = sparse(i, j, s, m, n)
where i and j are vectors which contain the row and column indices of nonzero elements and s is the
vector which contains the corresponding values. For example, the square bidiagonal matrix
n −2
n−1 −4 0
n−2 −6
S= .. ..
. .
2 −2n + 2
0 1
has the following nonzero elements
i j si,j i j si,j
1 1 n 1 2 −2
2 2 n−1 2 3 −4
3 3 n−2 3 4 −6
... ... ... ... ... ...
n−1 n−1 2 n−2 n−1 −2n + 4
n n 1 n−1 n −2n + 2
A simple way to generate this matrix is by entering
>> S = sparse([1:n], [1:n], [n:-1:1], n, n) + ...
sparse([1:n-1], [2:n], [-2:-2:-2*n+2], n, n)
We could, of course, generate S using one sparse command, but it would be more complicated. The
above command is easier to understand, even if it does require adding two sparse matrices. Since the out-
put from this command is basically just the above table, it is difficult to be sure that S is precisely what
is desired. We can convert a sparse matrix to full by
>> full(S)
and check explicitly that S is exactly what is shown in the above matrix.
In addition, a full (or even an already sparse) matrix A can be converted to sparse form with all zero
elements removed by
>> S = sparse(A)
Finally, a zero m×n matrix can be generated by
>> SZ = sparse(m, n)
which is short for
>> SZ = sparse([], [], [], m, n)
The second common command for generating sparse matrices is
>> S = spdiags(B, d, m, n)
which works with entire diagonals of S. B is an min{ m, n }×p matrix and its
olumns become the di-
agonals of S specified by d ∈ Cp . (For example, if d = (0, 1)T then the first column of B contains the
elements on the main diagonal and the second column contains the elements on the diagonal which is one
above the main diagonal.) Thus, we can also generate the matrix S given above by
>> B = [ [n:-1:1]′ [0:-2:-2*n+2]′ ]
>> S = spdiags(B, [0 1]′ , n, n)
Warning: Be Careful! The command spdiags is somewhat similar to diag but must be handled more
carefully. Note that the element b1,2 is 0, which does not appear in S. The difficulty is that
the number of rows of B is generally larger than the lengths of the diagonals into which the
columns of B are to be placed and so some padding is required in B. The padding is done so
that all the elements in the k-th row of B come from the k-th
olumn of S.
For example, the matrix
0 0 6 0 0
1 0 0 7 0
S1 = 0 2 0 0 8
0 0 3 0 0
0 0 0 4 0
93
9. Sparse Matrices
94
10.1. Basic Commands
speye Generates a sparse identity matrix. The arguments are the same as
for eye.
sprand Sparse uniformly distributed random matrix.
sprand Sparse uniformly distributed random symmetric matrix; the matrix
can also be positive definite.
sprandn Sparse normally distributed random matrix.
sparse Generates a sparse matrix elementwise.
spdiags Generates a sparse matrix by diagonals or extracts some diagonals
of a sparse matrix.
full Converts a sparse matrix to a full matrix.
find Finds the indices of the nonzero elements of a matrix.
nnz Returns the number of nonzero elements in a matrix.
spfun(′<function name>′, A) Applies the function to the nonzero elements of A.
spy Plots the locations of the nonzero elements of a matrix.
spconvert Generates a sparse matrix given the nonzero elements and their
indices.
sprandsym Generates a sparse uniformly distributed symmetric random ma-
trix; the matrix can also be positive definite.
d
y = f(t, y) for t ≥ t0
dt
where y ∈ Rn with initial condition y(t0 ) = y0 . The basic MATLAB commands are easily learned. How-
ever, the commands become more involved if we want to explore the trajectories in more detail. Thus, we
divide this section into the really basic commands which are needed to generate a simple trajectory and
into a more advanced section that goes into many technical details. We also provide a large number of ex-
amples, many more than in other sections of this overview, to provide a template of how to actually use
the advanced features.
y ′′ + αy ′ − y(1 − βy 2 ) = Γ cos ωt ,
which is called Duffing’s equation. This ode has many different types of behavior depending on the values
of the parameters α, β, Γ, and ω.
As written, this is not in the form of a first-order system. To transform it we define y1 = y and
y2 = y1′ = y ′ so that
y1′ = y2
y2′ = y1′′ = y ′′ = y1 (1 − βy12 ) − αy2 + Γ cos ωt
or
′
y1 y2
= .
y2 y1 (1 − βy12 ) − αy2 + Γ cos ωt
95
10.1. Basic Commands
Note: This same “trick” can be applied to an n-th order by defining y1 = y, y2 = y1′ , y3 = y2′ , . . . ,
′
yn = yn−1 .
Before discussing how to solve Duffing’s equation specifically, we discuss the commands which solve
time-evolution odes. To obtain a numerical solution to a time-evolution first-order ode system, enter
>> <ode solver>(<function handle>, tspan, y0)
or
>> [t, Y] = <ode solver>(<function handle>, tspan, y0)
or
>> sol = <ode solver>(<function handle>, tspan, y0)
First, we have to choose which of the ode solvers to use, which is discussed in detail shortly. It would be
possible for MATLAB itself to decide which numerical method to employ. However, there are good rea-
sons why the decision should be left in the hand of the user.
Warning: Make sure you understand how to enter the name of the function handle. This is discussed at
length in section 3.2, and we also briefly discuss it below.
All of the solvers use the same input and output arguments, which we now discuss. The input parame-
ters are:
function The name of the function handle that calculates f(t, y).
tspan The vector that specifies the time interval over which the solution is to be calculated. If this
vector contains two elements, these are the initial time and the final time; in this case the
ode solver determines the times at which the solution is output. If this vector contains more
than two elements, these are the only times at which the solution is output.
Note: the final time can be less than the initial time, in which case the trajectory is moving
backwards in time.
y0 The vector of the initial conditions for the ode.
If there are no output parameters, the individual elements of the solution, i.e., y1 (t), y2 (t), . . . , yn (t),
are plotted vs. t on a single plot. The circles on the trajectories show the actual times at which the solu-
tion is calculated.
If there are two output parameters, these are:
t The column vector of the times at which the solution is calculated.†
Y The matrix which contains the numerical solution at the times corresponding to t. The first
column of Y contains y1 , the second column y2 , etc.‡
If there is one output parameter, then it is a structure. The output is now
sol.x The column vector of the times at which the solution is calculated.
sol.y The matrix which contains the numerical solution at the times corresponding to t.
There are seven distinct ode solvers which can be used, as shown in the table below. All these ode
solvers use an adaptive step size to control the error in the numerical solution. Each time step is chosen
to try to keep the local error within the prescribed bounds as determined by the relative error and the
absolute error tolerances (although it does not always succeed). That is, ei , which is the error in yi , is
supposed to satisfy
ei ≤ max{ RelTol · |yi |, AbsTol(i) }
where the default value of RelTol is 10−3 and of the vector AbsTol is 10−6 for each element. (How-
ever, there is no guarantee that the error in the numerical calculation actually satisfies this bound.)
†
The t in [t, Y] is unrelated to the t argument in the function duffing.
‡
We have capitalized the Y in [t, Y] to indicate that the output is a matrix whereas the argument y is a
vector in the function.
96
10.1. Basic Commands
ODE Solvers
It is up to you to decide which ode solver to use. As a general rule, unless you believe that the ode is
stiff (which we discuss in the next paragraph), try ode45 or ode113. For a given level of accuracy, these
methods should run “reasonably fast”. (Which one runs faster is very dependent on the ode.) If you know
(or believe) that the ode is stiff, or if these two non-stiff solvers fail, then try ode15s.
And what is a stiff ode? There is no precise definition. Instead, we say it is stiff if the time step re-
quired to obtain a stable and accurate solution is “unreasonably” small. The best way to explain this
rather vague impression is through some simple examples.
Consider the second-order time-evolution ode
with the initial conditions y(0) = η1 and y ′ (0) = η2 . The solution to this ode is
y(t) = c1 et + c2 e−1000t
where
1 1
c1 = (η1 − η2 ) and c2 = (1000η1 + η2 ) .
1001 1001
There are two time scales in this solution: there is a rapid decay due to the e−1000t term and there is a
slow growth due to the et term. Initially, the time step will be “very small” so that the rapid decay is
calculated accurately (i.e., ∆t ≪ 1/1000 ). However, soon it will be negligible and the time step should in-
crease so that it calculates the slow growth accurately (i.e., ∆t ≪ 1 ). However, if a non-stiff solver, such
as ode45 or ode23, is used, the time step must always be “very small”. That is, it must accurately track
the rapidly decaying term — even after this term has disappeared in the numerical solution. The reason
is that a numerical instability will cause the trajectory to blow up if the time step increases. However, if
a stiff solver is used, the time step can increase by many orders of magnitude when the rapidly decaying
term has disappeared.
The same is true for the ode
y ′′ + 1001y ′ + 1000y = 0
whose solution is
y(t) = c1 e−t + c2 e−1000t .
Initially, the time step will be “very small” so that the rapid decay is calculated accurately (i.e.,
∆t ≪ 1/1000 ). However, soon it will be negligible and the time step should increase so that it calculates
the slowly decaying mode accurately (i.e., ∆t ≪ 1 ).
On the other hand, consider the ode
y ′′ − 1001y ′ + 1000y = 0
whose solution is
y(t) = c1 et + c2 e1000t .
the time step must always be “very small” so that the rapidly growing mode e1000t is calculated accu-
rately (i.e., ∆t ≪ 1/1000 ). Thus, this is not a stiff ode.
The above examples are very simple. They are only designed to show that an ode is stiff if there is a
rapidly decaying mode and any growth in the solution occurs on a much slower time scale. (This fre-
quently happens in chemical reaction models, where some reactions occur on a very fast time scale and
97
10.1. Basic Commands
and other occur on a much slower time scale.) In the next subsection we discuss van der Pol’s equation, a
second-order ode which is either non-stiff or stiff depending on the value of one parameter. You can plot
the solution and observe the separation of the fast scale and the slow scale as this parameter increases.
One difficulty with a stiff ode solver is that you may well have to supply the Jacobian of the ode your-
self. The Jacobian of f(t, y) is the n×n matrix
∂fi
J(t, y) = (t, y) ,
∂yj
∂fi
.
∂yj
Any of the stiff methods can approximate this matrix numerically. However, if the ode is “bad” enough,
this may not be enough. You may have to calculate all these partial derivatives yourself and include them
in your function file. (We show an example of this later.)
The reason for this large choice of ode solvers is that some odes are very, very, very nasty. It is possible
that most of the ode solvers will fail and only one, or maybe two, will succeed. SAY MORE???
To conclude this subsection, we return to Duffing’s equation. Suppose we want to solve the ode for
t ∈ [0, 100] with initial conditions y = (2, 1)T and plot the results. Since this is a very well-behaved ode
for the parameters given, we can use ode45. The simplest approach is to use an anonymous function to
input the right-hand side.
>> alpha = 0.05;
>> beta = 1.0;
>> Gamma = 0.5;
>> omega = 1.0;
>> duffing a = @(t, y)[ y(2) ; y(1)*(1-beta*y(1) 2)-alpha*y(2)+Gamma*cos(omega*t) ];
>> ode45(duffing a, [0 100], [2 1]);
ˆ
(The “a” denotes the fact that duffing a is an anonymous function handle.) The solution will now be
plotted as y1 and y2 vs. t. (This plot is rather “cluttered” because, not only is the trajectory plotted,
but in addition markers are put at each of the points of the numerical solution.)
Warning: There are a number of parameters which are needed by the function and these must be de-
fined before the function is created. Also, the function handle duffing a will always use these
parameters, even if they are later changed.
Note: Since duffing a is already a function handle, we merely need to use its name as the first argument
to ode45.
To obtain complete control over what is plotted, you should let ode45 output the trajectory and do the
plots yourself. This is easily accomplished by changing the last line of the previous code to
>> [t, Y] = ode45(duffing a, [0 100], [2 1]);
>> figure(1)
>> subplot(2, 1, 1)
>> plot(t, Y(:,1))
>> subplot(2, 1, 2)
>> plot(t, Y(:,2))
>> figure(2)
>> plot(Y(:,1), Y(:,2))
This results in a plot of y vs. t and a separate plot of y ′ vs. t, so that both plots are visible even if
they have vastly different scales. There is also a separate plot of y ′ vs. y, which is called a phase plane.
The next simplest approach is to use a nested function, and so there must also be a primary function.
98
10.1. Basic Commands
†
A closure is a complicated term to explain. In this context it means that the parameters used when the func-
tion duffing c was defined are saved and can be referenced inside ode45.
99
10.2. Advanced Commands
100
10.2. Advanced Commands
odeset(′<Prop 1>′ , Assigns values to properties; these are passed to the ode solver when it is
<Value 1>, ...) executed.
AbsTol The absolute error tolerance. This can be a scalar in which case it applies to all the
elements of y or it can be a vector where each element applies to the corresponding
element of y. (Default value: 10−6 .)
Events A handle to a function which determines when an event occurs.
Jacobian A handle to a function which returns the Jacobian.
JPattern A sparse matrix whose nonzero elements (which should be 1 ) correspond to the possi-
ble nonzero elements of the Jacobian. This is only used when the Jacobian is calculated
numerically, i.e., when the Jacobian property is not used.
OutputFcn A handle to a function which is called after each successful time step. For example, a
plot of the trajectory can be generated automatically as it is being calculated.
Useful MATLAB functions are:
′
odeplot′ which generates a plot of time versus all the components of the trajectory,
i.e., t vs. y1 , y2 , . . . , yn ;
′
odephas2′ which generates a plot of y1 vs. y2 , i.e., Y(:,1) vs. Y(:,2);
′
odephas3′ which generates a plot of y1 vs. y2 vs. y3 , i.e., Y(:,1) vs. Y(:,2)
vs. Y(:,3).
It is possible to plot different components of y using OutputSel.
OutputSel A vector containing the components of Y which are to be passed to the function speci-
fied by the OutputFcn parameter.
Refine Refines the times which are output in t. This integer value increases the number of
times by this factor. (Default value: 1 for all ode solvers except ode45, 4 for ode45.)
RelTol The relative error tolerance. (Default value: 10−3 ).
Stats Whether statistics about the run are output on the terminal (value: ′ on′ ) after the
trajectory is calculated or they are not (value: ′ off′ ). (Default value: ′ off′ .)
For example, if you want to use ode45 with the relative error tolerance set to 10−6 for Duffing’s equa-
tion, enter
>> params = odeset(′RelTol′, 1.e-6);
>> [t, Y] = ode45(duffing a, tspan, y0, params);
The trajectory will be more accurate — but the command will run slower. If you also want the statistics
on the performance of the particular ode solver used, enter
>> params = odeset(′RelTol′, 1.e-6, ′ Stats′ , ′ on′ );
>> [t, Y] = ode45(@duffing a, tspan, y0, params);
and the number of successful steps, the number of failed steps, and the number of times f(t, y) was eval-
uated will be printed on the terminal. This might be useful in “optimizing” the performance of the ode
solver if the command seems to be running excessively slowly. For implicit methods where the Jacobian
needs to be calculated, the number of times the Jacobian was evaluated, the number of LU decompositions,
and the number of times the linear system was solved will also be returned.
The ode solver can also record the time and the location when the trajectory satisfies a particular con-
dition: this is called an event. For example, if we are calculating the motion of the earth around the sun,
we can determine the position of the earth when it is closest to the sun and/or farthest away; or, if we are
following the motion of a ball, we can end the calculation when the ball hits the ground — or we can let it
continue bouncing. Enter
>> ballode
to see a simple example.
For example, suppose we want to record where and when a trajectory of Duffing’s equation passes
through y1 = ±0.5. That is, we define an “event” to be whenever the first component of y passes
101
10.2. Advanced Commands
through −0.5 or +0.5. This can be done by modifying the primary function duffing ode and replac-
ing the ode45 statement by
params = odeset(′RelTol′, 1.e-6, ′ Events′, @duffing event);
[t, Y, tevent, Yevent, indexevent] = ode45(@duffing n, tspan, y0, params);
where we create a new nested function in the primary function duffing ode.
function [value, isterminal, direction] = duffing event(t, y)
value = [y(1)+0.5; y(1)-0.5]; % check whether y(1) passes through ±0.5
isterminal = [0; 0]; % do not halt when this occurs
direction = [0; 0]; % an event occurs when y(1) passes through
% zero in either direction
end
Note that we can define the right-hand side of Duffing’s equation by using duffing a, duffing n,
duffing p, or duffing p2 and duffing c. We have chosen duffing n since we have created the nested
function duffing event. (We could let duffing event be a primary function, but there is no reason to
do so.)
There are a number of steps we have to carry out to turn “events” on. First, we have to use the odeset
command. However, this only tells the ode solver that it has to watch for one or more events; it does not
state what event or events to watch for. Instead, we describe what an event is in this new function. Three
vector arguments are output:
value – A vector of values which are checked to determine if they pass through zero during a time
step. No matter how we describe the event, as far as the ode solver is concerned an event
only occurs when an element of this vector passes through zero. In some cases, such as this
example it is easy to put an event into this form. In other cases, such as determining the
apogee and perigee of the earth’s orbit, the calculation is more complicated.
isterminal – A vector determining whether the ode solver should terminate when this particular
event occurs: 1 means yes and 0 means no.
direction – A vector determining how the values in value should pass through zero for an event to
occur:
1 means the value must be increasing through zero for an event to occur,
−1 means the value must be decreasing through zero for an event to occur, and
0 means that either direction triggers an event.
The final step is that the left-hand side of the calling statement must be modified to
[t, Y, tevent, Yevent, index event] = ode45(...);
Any and all events that occur are output by the ode solver through these three additional variables:
tevent is a vector containing the time of each event,
Yevent is a matrix containing the location of each event, and
index event is a vector containing which value in the vector value passed through zero.
If the result is stored in the structure sol, the new output is
sol.xe is a vector containing the time of each event,
sol.ye is a matrix containing the location of each event, and
sol.ie is a vector containing which value in the vector value passed through zero.
Since the function duffing event might appear confusing, we now discuss how an event is actually
calculated. At the initial time, t and y are known and duffing event is called so that the vector
(0)
(0) y1 + 0.5
e = (0) ,
y1 − 0.5
i.e., value, can be calculated. In addition, isterminal and direction are returned. Next, duffing is
called and the solution y(1) is calculated at time t(1) . duffing event is called again and e(1) is calcu-
lated and compared elementwise to e(0) . If the values have different signs in some row, then direction
is checked to determine if the values are passing through zero in the correct direction or if either direction
is allowed. If so, the time at which the element is zero is estimated and the ode is solved again to obtain
102
10.2. Advanced Commands
a more accurate estimate. This procedure continues until the zero is found to the desired accuracy. Then
isterminal is checked to see if the run should be continued or should be stopped.
Another interesting ode is van der Pol’s equation
y ′′ − µ(1 − y 2 )y ′ + y = 0
103
10.2. Advanced Commands
where g = 9.8 meters/second is the acceleration on the ball due to the earth’s gravity. The initial condi-
tions are
x(0) = 0 , x′ (0) = s cos α , z(0) = 0, and z ′ (0) = s sin α
where we assume, without loss of generality, that the center of our coordinate system is the initial location
of the ball. We also want to determine four “events” in the ball’s flight: the highest point of the trajectory
of the ball and the time it occurs, the distance it travels and the time it hits the ground, and the x val-
ues and times when the ball reaches the height h > 0. But beware because the ball may never attain this
height!
Although these odes can be solved analytically (consult any calculus book), our aim is to give an ex-
ample of how to use many of the advanced features of MATLAB’s ode solvers. (If we would include the
effects of air resistance on the ball, then these odes would become nonlinear and would not be solvable
analytically.) We convert Newton’s laws to the first-order system
′
y1 y2
y2 0
=
y3 y4
y4 −g
One complication with solving this system numerically is that we do not know when the ball will hit
the ground, so we cannot give the final time. Instead, we use a time, 10s/g which is much greater than
needed and we let the program stop itself when the ball hits the ground. In addition, we want the relative
error to be 10−6 . Finally, we want the trajectory (i.e., z vs. x ) to be plotted automatically.
The following is a completely self-contained example using nested functions.
104
10.2. Advanced Commands
where P (t), Q(t), and R(t) are polynomials with no common factors. The singular points of this
ode are the values of t for which P (t) = 0. If t0 is a singular point, it is a regular singular point if
limt→t0 (t − t0 )Q(t)/P (t) and limt→t0 (t − t0 )2 R(t)/P (t). A “common” ode of this type is Bessel’s equa-
tion
t2 y ′′ (t) + ty ′ (t) + (t2 − n2 )y(t) = 0 for t ≥ 0 (10.1)
105
11. Boundary-Value Ordinary Differential Equations
where n is a nonnegative integer and the initial condition is given at t = 0. The solution is denoted by
Jn (t) and, for specificity, we will concentrate on n = 1. At t = 0 the ode reduces to −y(0) = 0 and so
we require y(0) = 0. The free initial condition is y ′ (0) and for this example we choose y ′ (0) = 1.
If we write Bessel’s equation as
′′ 1 ′ n2
y (t) + y (t) + 1 − 2 y(t) = 0 (10.2)
t t
we clearly have a problem at t = 0 and for t ≈ 0. The ode solvers we discussed previously can han-
dle (10.2) for t ≥ 1 with the initial conditions that y(1) and y ′ (1) are given. However, a completely
different method of solution is required for t ≥ 0 and the form (10.1) is preferred to (10.2).
When we convert Bessel’s equation to the first order system we again let y1 (t) = y(t) and y2 (t) = y ′ (t)
and leave the t2 in the numerator to obtain
′
y1 y2
=
t2 y2′ −ty2 − (t2 − 1)y1
Previously, we have always written the first-order system as y′ = f(t, y), but this form has a problem
when t = 0. Instead, we write it as g(t, y, y′ ) = 0 so that
y1′ − y2
g(t, y, y′ ) = .
t y2 + ty2 + (t2 − 1)y1
2 ′
Finally, we not only have to input the initial condition y(0) = (0, 1)T , but we also have to input
T
y′ (0) = y1′ (0), y2′ (0) . It is easy to calculate y1′ (0) = y2 (0), but y2′ (0) ≡ y ′′ (0) is more complicated.
Differentiate (10.1) with respect to t to obtain
t2 y ′′′′ (t) + 5ty ′′′ (t) + (t2 + 3)y ′′ (t) + 4ty ′ (t) + 2y(t) = 0 .
Now set t = 0 to obtain y ′′ (0) = 0. We can solve Bessel’s equation for t ∈ [0, 10] by
>> g = @(t, y, yp) [yp(1)-y(2);t 2 *yp(2)+t*y(2)+(t 2 -1)*y(1)];
>> tspan = [0 10]
ˆ ˆ
>> y0 = [0;1]
>> yp0 = [1;0]
>> [t,Y] = ode15i(g, tspan, y0, yp0)
>> plot(t, Y(:,1))
ode15i Stiff ode solver for the fully implicit ode f(t, y, y ′ ) = 0.
d
y = f(x, y) for x ∈ [a, b]
dx
106
11. Boundary-Value Ordinary Differential Equations
where y ∈ Rn but conditions are given at both ends of the interval. If the boundary conditions are sep-
arated, then k conditions are given at x = a and n − k other conditions are given at x = b. If the
boundary conditions are non-separated, then the conditions at x = a and at x = b are related. To allow
any of these boundary conditions we write the boundary conditions as φ y(a), y(b) = 0 where φ ∈ Rn .
For simplicity, we will only consider two closely related second-order odes, i.e., n = 2. This example
should enable you to study any boundary-value ode. Consider the two nonlinear boundary-value ordinary
differential equations
d2 y dy
(x) + 2 (x) + ǫey(x) = 0 (11.1a)
dx2 dx
and
d2 y dy
ǫ (x) + 2 (x) + ey(x) = 0 (11.1b)
dx2 dx
which are called Dirichlet boundary conditions. These two odes are quite simple, but also quite interesting
and challenging to solve for certain intervals in ǫ.
We could use the Neumann boundary conditions y ′ (0) = 4 and y ′ (1) = −7 by
y ′ (0) − 4
φ y(0), y(1) = =0. (11.3)
y ′ (1) + 7
Or we could use the mixed boundary conditions y(0) − y ′ (0) = 1 and y(1) + 2y ′ (1) = 3 by
y(0) − y ′ (0) − 1
φ y(0), y(1) = =0. (11.4)
y(1) + 2y ′ (1) − 3
The primary MATLAB function is bvp4c. However, the functions bvpinit and deval are also
needed. We solve the boundary value problem by
>> sol = bvp4c(<right-hand side>, <boundary conditions>, <initial guess>)
There are two functions we need to write: odefun is f(x, y) and bcfun is the boundary conditions. For
our example the ode given by
function yp = nlode(x, y)
global which ode eps
if which ode == 1
yp = [y(2); -eps*exp(y(1))-2*y(2)];
else
yp = [y(2); -(exp(y(1))+2*y(2))/eps];
end
where we use global to input which ode to use and ǫ. The boundary condition is given by
function bc = nlode bc(ya, yb)
bc = [ya(1); yb(1)];
Since these boundary conditions are particularly simple, we also include the function
function bc = nlode bc2(ya, yb)
bc = [ya(1)-ya(2)-1; yb(1)+2*yb(2)-3];
107
11. Boundary-Value Ordinary Differential Equations
for mixed boundary conditions (11.4). In addition, we have to choose an initial guess for y(x) using
bvpinit by either
>> bvpinit(x, y init)
or
>> bvpinit(x, <initial guess function>)
For example, if we want the initial iterate to be a parabola which is zero at x = 0 and 1 and has maxi-
mum value A then y(x) = y1 (x) = 4Ax(1 − x) and y ′ (x) = y2 (x) = 4A(1 − 2x) then we can write
>> x = linspace(0, 1, 21);
>> solinit = bvpinit(x, @nlode y ic);
where nrode y ic is written as
function y ic = nlode y ic(x)
global A
y ic = [4*A*x.*(1 - x); 4*A*(1-2*x)];
The only alternative is to write
>> x = linspace(0, 1, 21);
>> y1 val = ???;
>> y2 val = ???;
>> solinit = bvpinit(x, [y1 val; y2 val]);
where y1 val and y2 val are scalar values. Thus the initial guess is y1 = y1 val*ones(size(x)) and y2
= y2 val*ones(size(x)). This is often unacceptable because constant initial guesses may be so far from
the solution that convergence cannot be obtained. What we would like to do is
>> x = linspace(0, 1, 21);
>> y1 = 4*A*x.*(1 - x);
>> y2 = 4*A*(1 - 2*x);
>> solinit = bvpinit(x, [y1; y2]); % WRONG
This fails because y1 and y2 must be scalar variables and not vectors. If you really, really need y1 and
y2 to be vectors, then do not use bvpinit. Instead, specify the structure solinit directly by entering
>> x = linspace(0, 1, 21);
>> y1 = 4*A*x.*(1 - x);
>> y2 = 4*A*(1 - 2*x);
>> solinit.x = x;
>> solinit.y = [y1;y2];
Warning: This is dangerous because future versions of Matlab might change the fieldnames of the struc-
ture solinit. However, it works for now.
We are finally ready to solve this ode by
>> global which ode eps
>> global A
>> which ode = 1;
>> A = 1;
>> eps = 3;
>> x = linspace(0, 1, 21);
>> solinit = bvpinit(x, @nlode y ic);
>> sol = bvp4c(@nlode, @nlode bc, solinit);
The solution is contained in sol and is extracted by deval. For example, if xi = (i − 1)∆x where
x1 = 0 and xn = 1 then we determine, and plot, the numerical solution y by
>> xpt = linspace(0, 1, 101);
>> Ypt = deval(sol, xpt);
>> plot(xpt, Ypt(1,:), xpt, Ypt(2,:), ′ r′ )
Having done all this work, we now combine everything into the function m-file nlode all to show how
108
11. Boundary-Value Ordinary Differential Equations
much easier it is to use nested functions and to combine everything into one primary function.
function sol = nlode all(which ode, eps, A, nr points)
% nlode all: boundary-value solver using bvp4c
x = linspace(0, 1, nr points);
solinit = bvpinit(x, @nlode y ic);
sol = bvp4c(@nlode, @nlode bc, solinit);
xpt = linspace(0, 1, 101);
Ypt = deval(sol, xpt);
plot(xpt, Ypt(1,:), xpt, Ypt(2,:), ′ r′ )
%%%%% nested functions follow
function y ic = nlode y ic(x)
y ic = [4*A*x.*(1 - x); 4*A*(1-2*x)];
end
function yp = nlode(x, y)
if which ode == 1
yp = [y(2); -eps*exp(y(1))-2*y(2)];
else
yp = [y(2); -(exp(y(1))+2*y(2))/eps];
end
end
function bc = nlode bc(ya, yb)
bc = [ya(1); yb(1)];
end
end
This m-file is easy to read and easy to debug and easy to modify. Also, the solution is returned so it can
be used in the MATLAB workspace.
The reason we chose these particular odes is to “check out” bvp4c. For the ode (11.1a) there are two
solutions for 0 ≤ ǫ / 3.82 and no solutions for ǫ ' 3.82. This is a good test of any boundary-value
solver. For the ode (11.1a) there is one solution for any ǫ > 0. The “interesting” feature of this ode is
that for ǫ ≪ 1 the solution rises rapidly from y(0) = 0 to y(x) ≈ log 2 for x = O(ǫ) and then decays
gradually so that y(1) = 0. It is very challenging for a boundary-value solver to be able to capture this
rapid rise.
One final point needs to be emphasized. Sometimes, any “halfway decent” initial choice of y will con-
verge to a solution. In fact, this is true for our example — but it is not true for many examples. Some-
times it takes a “good” initial choice to obtain convergence; a “bad” choice will never converge to the de-
sired solution. The standard method to use to obtain a “good” initial iterate is the continuation method.
Frequently there are values of the parameter(s) for which “good” initial iterates are known. For example,
for the ode (11.1a) if ǫ ≪ 1 we can approximate ǫey by the Taylor series expansion ǫ(1 + y) and solve
the resulting linear ode. If ǫ = 0.1 the resulting analytical solution is a very good approximation to the
numerical solution. You can use this solution as the initial guess for ǫ = 0.2. The numerical solution can
then be used as an initial guess for a larger value of ǫ, etc.
The only difficulty with this method is that there might be more solutions. When ǫ = 0.1 there is a
second solution whose maximum is over 8. For this solution y ′ (0) ≈ 35 which indicates how rapidly the
solution is growing at the left endpoint. This solution can only be found by trying “large” initial guesses
(e.g., choosing A to be large in nlode y ic ).
For the ode (11.1b) it is very difficult to determine “good” initial guesses when ǫ ≪ 1 since the solu-
tion grows so rapidly. Again, the continuation method is very helpful. Start with a “large” value of ǫ,
say ǫ = 1, and choose a “reasonable” initial guess. (Since the two odes are identical when ǫ = 1 you can
use the solution you found to ode (11.1a).) Then slowly decrease ǫ. For example, when ǫ = 0.01 we have
y ′ (0) ≈ 130 and when ǫ = 0.001 we have y ′ (0) ≈ 1300. In conclusion, we want to remind you that for
the odes we have discussed here almost any “halfway reasonable” initial choice for the ode (11.1a) will
converge to one of the two solutions and for the ode (11.1b) will converge to the single solution. However,
you might well find an ode for which this is not true.
109
12. Polynomials and Polynomial Functions
Boundary-Value Solver
is represented by the vector q = (c1 , c2 , . . . , cn )T . You can easily calculate the roots of a polynomial by
>> r = roots(q)
Conversely, given the roots of a polynomial you can recover the coefficients of the polynomial by
>> q = poly(r)
Warning: Note the order of the coefficients in the polynomial. c1 is the coefficient of the highest power of
x and cn is the coefficient of the lowest power, i.e., 0.
The polynomial can be evaluated at x by
>> y = polyval(q, x)
where x can be a scalar, a vector, or a matrix. If A is a square matrix, then
is calculated by
>> polyvalm(q, A)
(See section 15 for more details on this type of operation.)
A practical example which uses polynomials is to find the “best” fit to data by a polynomial of a partic-
ular degree. Suppose the data points are
(−3, −2), (−1.2, −1), (0, −0.5), (1, 1), (1.8, 2)
and
we want to find the “best” fit by a straight line. Defining the data points more abstractly as
(xi , yi ) i = 1, 2, . . . , n and the desired straight line by y = c1 x + c2 , the matrix equation for the
straight line is
x1 1 y1
x2 1 c1 y2
.. .. = .. .
. . c2 .
xn 1 yn
In general, there is no solution to this overdetermined linear system. Instead, we find the least-squares
solution c = (c1 , c2 )T by
>> c = [x ones(n, 1)] \ y
110
12. Polynomials and Polynomial Functions
We can plot the data points along with this straight line by
>> xx = linspace(min(x), max(x), 100);
>> yy = polyval(c, xx);
>> plot(xx, yy, x, y, ′ o′ )
We can find the “best” fit by a polynomial of degree m < n, i.e., y = c1 xm + c2 xm−1 + . . . + cm+1 , by
calculating the least-squares solution to
Vc = y
where
xm xm−1 ...
1 1 x1 1 c1
xm xm−1 ... x2 1 c
V = ..2 2.
.. ... ... and c = ..2 .
. .
xmn
m−1
xn ... xn 1 cn
The matrix V is called a Vandermonde matrix . The statement
>> V = vander(x);
generates the square Vandermonde matrix with m = n − 1. To generate the n×(m − 1) Vandermonde
matrix we want, enter
>> V = vander(x)
>> V(: , 1:m-1) = [];
This entire procedure can be carried out much more easily by entering
>> q = polyfit(x, y, m-1)
where the third argument is the order of the polynomial (i.e., the number of coefficients in the polyno-
mial).
Warning: The Vandermonde matrix is approximately as badly conditioned as the Hilbert matrix
which was discussed in section 5.2. For example, cond(vander([1 : 10])) = 2×1012 whereas
cond(hilb(10)) = 2×1013 .
You can also find a local maximum or minimum of the polynomial p(x) by finding the zeroes of p′ (x).
The coefficients of p′ (x) are calculated by
>> polyder(q)
where q is the vector of the coefficients
of p(x).
Given a set of data points (xi , yi ) there is sometimes a need to estimate values that lie within these
data points (this is called interpolation) or outside them (this is called extrapolation). This estimation is
generally done by fitting data which is “near” the desired value to a polynomial and then evaluating this
polynomial at the value.
There are a number of commands to interpolate data points in any number
of dimensions. The simplest
command in one dimension to interpolate the points (xi , yi ) 1 ≤ i ≤ n is
>> yvalues = interp1(x, y, xvalues, <method>)
where xvalues is a vector of the values to be interpolated, yvalues is the vector of the interpolated
values, and <method> is an optional argument specifying the method to be used. One additional require-
ment for this command is that the elements of x are monotonic, i.e., either all in increasing order or in
decreasing order, to make it easy for the function to determine which data points are “near” the desired
value. Five of the interpolation methods which can be used are the following:
′
nearest′: The interpolated value is the value of the nearest data point.
′
linear′: Linear splines are used to connect the given data points. That is, straight lines connect
each pair of adjacent data points. (This is the default.)
′
spline′: Cubic splines are used to connect the given data points. That is, cubic polynomials con-
nect each pair of adjacent data points. The additional constraints needed to obtain unique
polynomials are that the the two polynomials which overlap at each interior data point
have the same first and second derivatives at this point.
′
pchip′ : Piecewise cubic Hermite polynomials connect each pair of adjacent data points. This is simi-
lar to spline but the second derivatives need not be continuous at the interior data points.
Instead, this interpolation is better at preserving the shape of the data. In particular, on in-
tervals where the data is monotonic so is the piecewise polynomial, and on intervals where
the data is concave up or down so is the piecewise polynomial.
111
13. Numerical Operations on Functions
′
cubic′ : The same as pchip.
An alternate way to interpolate these points is by using the two commands
>> pp = spline(x, y)
>> yvalues = ppval(pp, xvalues)
to generate and interpolate the cubic spline or
>> pp = pchip(x, y)
>> yvalues = ppval(pp, xvalues)
to generate and interpolate the piecewise cubic Hermite polynomials. The first command generates the
structure pp which contains all the information required to obtain a unique piecewise polynomial. The
second command interpolates the piecewise polynomial at the x values given by the vector xvalues.
Interpolation really means interpolation. If a value lies outside the interval [x1 , xn ] then, by default,
NaN is returned. This can be changed by adding a fifth argument:
• If the fifth argument is a number, this value is returned whenever the value lies outside the interval.
• If the fifth argument is ′ extrap′ , extrapolation (using the same method) is used.
The command spline can be used instead of using interp1 with the method spline. With it you
can specify precisely the boundary conditions to use. Similarly, the command pchip can be used instead
of using interp1 with the method pchip or cubic.
Polynomial Functions
interp1(x, y, xvalues, <method>) Interpolates any number of values using the given data
points and the given method.
interp2 Interpolates in two dimensions.
interp3 Interpolates in three dimensions.
interpn Interpolates in n dimensions.
pchip Cubic Hermite interpolation.
poly(<roots>) Calculates the coefficients of a polynomials given its roots.
polyder(q) Calculates the derivative of a polynomial given the vector of
the coefficients of the polynomial.
polyfit(x, y, <order>) Calculates the coefficients of the least-squares
polynomial
of
a given order which is fitted to the data (xi , yi ) .
polyval(q, x) Evaluates the polynomial p(x).
polyvalm(q, A) Evaluates the polynomial p(A) where A is a square matrix.
ppval evaluates the piecewise polynomial calculated by pchip or
spline.
roots(q) Numerically calculates all the zeroes of a polynomial given
the vector of the coefficients of the polynomial.
spline Cubic spline interpolation.
vander Generates the Vandermonde matrix.
112
13. Numerical Operations on Functions
finds a zero in the interval x ∈ (xmin, xmax) where the signs of the function must differ at the endpoints
of the interval.
Note: The function must cross the x-axis so that, for example, fzero cannot find the zero of the function
f (x) = x2 .
The full argument list is
>> fzero(<function handle>, xstart, <options>)
where xstart is either x0 or [xmin xmax], as we discussed previously. We can “tune” the zero find-
ing algorithm by using the function optimset to create a structure which changes some of the default
parameters for fzero. That is,
>> opt = optimset(′<Prop 1>′ , <Value 1>, ′ <Prop 2>′ , <Value 2>, ...)
changes the options included in the argument list and
>> fzero(<function handle>, xstart, opt, <arg 1>, <arg 2>, . . . )
executes fzero with the new options. Enter
>> help optimset
for a discussion of how optimset works and
>> optimset(@fzero)
to see the default parameters.
Frequently, the function will have parameters that need to be set. For example, we can find a zero of
the function f (x) = cos ax + bx by using an anonymous function
>> a = ???;
>> b = ???;
>> fcos a = @(x) cos(a*x) + b*x;
>> yzero = fzero(fcos a, xstart);
or by using a nested function
function fzero example(a, b, xstart)
yzero = fzero(@fcos n, xstart);
function y = fcos n(x)
% fcos: f(x) = cos(a*x) + b*x
y = a*cos(x) + b*x;
end
end
It sometimes happens that the function has already been coded in a separate file, i.e., it is a primary
function m-file, such as
function y = fcos p(x, a, b)
% fcos: f(x) = cos(a*x) + b*x
y = a*cos(x) + b*x;
Then we can use closure, as already discussed in section [Macro:[ode: basic]chap], so that the parame-
ters can be set outside of fzero. This is easily done by entering
>> a = ???;
>> b = ???;
>> fcos c = @(x) fcos p(x, a, b);
>> yzero = fzero(fcos p, xstart);
The parameters a and b are determined when the function fcos c is generated and so are passed indi-
rectly into fzero
MATLAB can also find a local minimum of a function of a single variable in an interval by
>> fminbnd(<function handle>, xmin, xmax)
As with fzero, the full argument list is
>> fminbnd(<function handle>, xmin, xmax, options)
MATLAB can also find a local minimum of a function of several variables by
>> fminsearch(<function handle>, iterate0)
where iterate0 is a vector specifying where to begin searching for a local minimum. For example, if we
enter
113
13. Numerical Operations on Functions
Instead, we can find a minimum of g(x) = f12 (x) + f22 (x). If the minimum value is 0, we have found
a zero of f — if it is not zero, we have not found a zero of f. For example, if f is defined an an anony-
mous function the result of
>> xmin = fminsearch(f, [0 0])
is xmin = (−.1324 . . . , 1.0627 . . . ). We are not done since we still have to calculate g(xmin ). This is
≈ 2.4×10−9 which is small — but is it small enough? We can decrease the termination tolerance by
>> opt = optimset(′TolX′ , 1.e-8, ′ TolFun′, 1.e-8)
>> xmin = fminsearch(f, [0 0], opt)
Since g(xmin ) = 2.3×10−17 we can assume that we have found a zero of f.
MATLAB can also calculate definite integrals using three commands. The first is quad which uses
Rb
adaptive Simpson’s method. To evaluate a f (x) dx by Simpson’s method enter
>> quad(<function handle>, a, b)
The full argument list is
>> quad(<function handle>, a, b, tol, trace)
where tol sets the relative tolerance for the convergence test and information about each iterate is
printed if trace is non-zero.
The second is quadl which uses adaptive Gauss-Lobatto quadrature, which is a variant of Gauss
quadrature.
quadl uses the more accurate formula and so should require many fewer function evaluations. For ex-
ample, quad calculates the exact integral (up to round-off errors) for polynomials of degree five whereas
quadl calculates the exact integral (up to round-off errors) for polynomials of degree nine.
The third is quadgk which uses adaptive Gauss-Kronrod quadrature. This command is more general
than the previous two because it is much more general:
• The interval can be half-infinite (i.e., a = −∞ or b = +∞ ) or fully infinute ( a = −∞ and
b = +∞ ).
• In addition the integrand can have an integrable singularity.
For example, the error in
>> f = @(x) 1./(1 + x. 2);
>> quadgk(f, 0, inf)
ˆ
is 8.8818×10−16 (the actual value is 2π ) and the error in
>> g = @(x) exp(sqrt(x))/sqrt(x);
>> quadgk(g, 0, 1)
is −2.3670×10−13 (the actual value is 2(e − 1) ).
MATLAB can also calculate the double integral
Z xmax Z ymax
f (x, y) dxdy
xmin ymin
114
14. Discrete Fourier Transform
by
>> dblquad(<function handle>, xmin, xmax, ymin, ymax)
It can also calculate the triple integral
Z xmax Z ymax Z zmax
f (x, y, z) dxdy dz
xmin ymin zmin
by
>> triplequad(<function handle>, xmin, xmax, ymin, ymax, zmin, zmax)
115
14. Discrete Fourier Transform
where Z T
1
a0 = f (t) dt
T 0
Z T
2
ak = f (t) cos kt dt
T 0
Z T
for k ∈ N[1, ∞) .
2
bk = f (t) sin kt dt
T 0
The coefficients a0 , a1 , a2 , . . . and b1 , b2 , . . . are called the real Fourier coefficients of f , and ak and bk
are the coefficients of the k-th mode. The power of the function f (t) is†
Z T
1
f (t) 2 dt
P =
T 0
so that ∞
1X
P = |a0 |2 + |ak |2 + |bk |2 .
2
k=1
and the frequency of the k-th mode is k/T cycles per unit time.
Since
eiαt + e−iαt eiαt − e−iαt
cos αt = and sin αt = ,
2 2i
we can rewrite the real Fourier series as the complex Fourier series
∞
X
f (t) = a0 + 1
2 (ak − ibk )e2πikt/T + 21 (ak + ibk )e−2πikt/T
k=1
so that
∞
X
f (t) = ck e2πikt/T for all t ∈ [0, T ] (14.2)
k=−∞
where
†
The term “power” is a misnomer because the function f need not be related to a physical quantity for which
the power makes any sense. However, we will stick to the common usage.
To understand the physical significance of power, we begin with the definition of work. Consider a particle
which is under the influence of the constant force F ~ . If the particle moves from the point P0 to P1 then the
work done to the particle is F ~ q~r , where ~r is the vector from P0 to P1 . The power of the particle is the work
~ q~v where ~v = ~r/t.
done per unit time, i.e., F
Next, consider a charge q which is moving between two terminals having a potential difference of V . The
work done on the charge is W = qV = ItV , where I is the current and t is the time it takes for the charge to
move between the two terminals. If R is the resistance in the circuit, V = IR and the power is
W V2
= IV = I 2 R =
P = .
t R
Thus, if we consider f (t) to be the voltage or the current of some signal, the instantaneous power in the signal is
proportional to f 2 (t) and the average power is proportional to
1 T ˛˛
Z
˛2
f (t)˛ dt .
T 0
116
14. Discrete Fourier Transform
c0 = a 0
)
ck = 21 (ak − ibk ) (14.3)
for k > 0 .
c−k = 12 (ak + ibk )
The coefficients . . . , c−2 , c−1 , c0 , c1 , c2 , . . . are called the complex Fourier coefficients of f , and ck and
c−k are the coefficients of the k-th mode. (Note that these Fourier coefficients are generally complex.) We
can also calculate ck directly from f by
Z T
1
ck = f (t)e−2πikt/T dt for k = . . . , −2, −1, 0, 1, 2, . . .
T 0
Note that if f is real, then c−k = c∗k (by replacing k by −k in the above equation). The power of f (t)
is
∞
X
P = |c0 |2 + |ck |2 + |c−k |2
k=1
We can only calculate a finite number of Fourier coefficients numerically and so we truncate the infinite
series at the M -th mode. We should choose M large enough that
M
X
f (t) ≈ ck e2πikt/T for all t ∈ [0, T ] .
k=−M
M
X
f (tj ) = γk e2πiktj /T for j = 0, 1, 2, . . . , N − 1
k=−M
or, written as a first-order system,
M
X
fj = γk e2πijk/N for j = 0, 1, 2, . . . , N − 1 (14.4)
k=−M
N −1
1 X
γk = fj e−2πijk/N for k = −M, −M + 1, . . . , M . (14.5)
N j=0
The reason we have replaced the coefficients c−M , c−M+1 , . . . , cM−1 , cM by γ−M , γ−M+1 , . . . , γM−1 , γM
is that the c’s are the coefficients in the continuous complex Fourier series, eq. (14.2), and are calculated
by (14.3). The γ’s are the coefficients in the discrete complex Fourier series, eq. (14.4), and are calcu-
lated by (14.5).
†
Note that tN is not used because f (tN ) has the same value as f (t0 ) and so does not provide us with an
independent equation.
117
14. Discrete Fourier Transform
Note: To repeat: the discrete Fourier coefficient γk is a function of M , i.e., γk (M ), and is generally not
equal to the continuous Fourier coefficient ck . However, as M → ∞ we have γk (M ) → ck . For a
fixed M we generally only have γk (M ) ≈ ck as long as |k| is “much less than” M . Of course, it
takes practice and experimentation to determine what “much less than” means.
We define the discrete Fourier series by
M
X
fFS (t) = γk e2πikt/T for all t ∈ [0, T ] .
k=−M
It is our responsibility (using our experience) to choose M large enough that f (t) ≈ fFS (t). Given
f = (f0 , f1 , f2 , . . . , fN −1 )T , the Fourier coefficients are calculated in MATLAB by
>> fc = fft(f)/N
where the coefficients of the discrete Fourier transform are contained in fc in the order
T
γ0 , γ1 , . . . , γM−1 , γM , γ−M , γ−M+1 , . . . , γ−2 , γ−1 .
118
14. Discrete Fourier Transform
Also, notice that fftshift correctly shifts the coefficients, whereas ifftshift does not — but
ifftshift correctly shifts the coefficients back. That is, ifftshift is the inverse of fftshift so
ifftshift(fftshift(c s)) = c s.
Warning: One of the most common mistakes in using fft is forgetting that the input is in the order
f0 , f1 , f2 , . . . , fN −1
not
γ−M , γ−M+1 , . . . , γ−2 , γ−1 γ0 , γ1 , . . . , γM−1 , γM .
There is only one difficulty with our presentation. As we have already stated, the vector f has
N = 2M + 1 elements, which is an odd number. The Fast Fourier Transform (FFT, for short), which
is the method used to calculate the discrete Fourier coefficients by fft and also to recover the original
function by ifft, generally works faster if the number of elements of f is even, and is particularly fast if
it a power of 2.
The figure below shows the cputime needed to calculate fft(f) as a function of N . Since the verti-
cal axis is logarithmic, it is clear that there is a huge difference in the time required as we vary N .The
dashed lines show the minimum and maximum asymptotic times as cn log2 n.
−4
10
cpu time (seconds)
−5
10
−6
10
dashed lines are c*n*log2n; c = 2.7e−09, 2.0e−08
−7
10
0 200 400 600 800 1000 1200 1400 1600 1800 2000
n
119
14. Discrete Fourier Transform
For N to be even, we have to drop one coefficient, and the one we drop is γM . Now
N = 2M
M−1
X
fFS (t) = γk e2πikt/T for all t ∈ [0, T ]
k=−M
N −1
1 X
γk = fj e−2πijk/N for k = −M, −M + 1, . . . , M − 2, M − 1 .
N j=0
120
14. Discrete Fourier Transform
We now look at the Fourier spectrum of y0 by plotting the power at each frequency. First, we plot the
unperturbed power, power0, and then the perturbed power, powerpert, vs. the frequency at each mode,
freq. The two spikes in the plot of the unperturbed power are precisely at 50 and 120 hertz, the signa-
ture of the two sine functions in y0. (For simplicity in the discussion, we have deleted the power in the
M -th mode by fc(N/2 +1) = [] so that power0(k) is the power in the k−1-st mode.)
>> fc0 = fft(y0)/N; % Fourier spectrum of unperturbed signal
>> figure(2)
>> fc0(N/2 +1) = []; % delete k = N/2 +1 mode
>> power0(1) = abs(fc0(1)). 2;
ˆ
>> power0(2:N/2) = abs(fc0(2:N/2)). 2 + abs(fc0(N-1:-1:N/2 +1)). 2;
>> freq = [1:N]′ /time;
ˆ
% the frequency of each mode
ˆ
>> plot(freq(1:N/2), power0, ′ r′ ), axis([0 freq(N/2) 0 .5])
>> fcpert = fft(ypert)/N; % Fourier spectrum of perturbed signal
>> hold on
>> powerpert(1) = abs(fcpert(1)). 2;
ˆ
>> powerpert(2:N/2) = abs(fcpert(2:N/2)). 2 + abs(fcpert(N-1:-1:N/2 +1)). 2;
>> plot(freq(1:N/2), powerpert, ′ g′ )
ˆ ˆ
Clearly, the original spikes are still dominant, but the random noise has excited every mode.
To see how much power is in the unperturbed signal and then the perturbed signal, enter
>> sum(power0)
>> sum(powerpert)
The perturbed signal has about five times as much power as the original signal, which makes clear how
large the perturbation is.
Let us see if we can reconstruct the original signal by removing any mode whose magnitude is “small”.
By looking at the power plots, we see that the power in all the modes, except for those corresponding
to the spikes, have an amplitude / 0.1. Thus, we delete any mode of the perturbed Fourier spectrum,
i.e., fcpert, whose power is less than this value; we call this new Fourier spectrum fcchop. We then
construct a new signal ychop from this “chopped” Fourier spectrum and compare it with the original
unperturbed signal.
>> fcchop = fcpert; % initialize the chopped Fourier spectrum
>> ip = zeros(size(fcpert)); % construct a vector with 0’s
>> ip(1:N/2) = ( powerpert > 0.1 ); % where fcchop should be
>> ip(N:-1:N/2 +2) = ip(2:N/2); % zeroed out
>> fcchop( find( ip) ) = 0; % zero out "small" modes
˜
>> ychop = real( N*ifft(fcchop) ); % signal of "chopped" Fourier spectrum
>> figure(1)
>> plot(t, ychop, ′ b′ )
( ychop is the real part of N*ifft(fcchop) because, due to round-off errors, the inverse Fourier trans-
form returns a “slightly” complex result.) The result is remarkably good considering the size of the per-
turbation. If you have trouble comparing y0 with ychop, reenter
>> plot(t, y0, ′ r′ )
121
15. Mathematical Functions Applied to Matrices
Thus,
ea11
e a22
. . 0
eA =
. .
ean−1,n−1
0 eann
The MATLAB command
>> expm(A)
calculates eA if A is a square matrix. (Otherwise, it generates an error message.)
A simple example where eA occurs is in the solution of first-order ode systems with constant coeffi-
cients. Recall that the solution of
dy
(t) = ay(t) for t ≥ 0 with y(0) = yic
dt
is
y(t) = yic eat .
Similarly, the solution of
y1 (t)
a11 a12 ... a1n
y1 (t)
d y2 (t) a21 a22 ... a2n y2 (t)
.. = .. ... .. ... ... for t ≥ 0 with y(0) = yic
dt . . .
yn (t) an1 an2 ... ann yn (t)
122
15. Mathematical Functions Applied to Matrices
>> sqrtm(A)
Finally, log B is calculated in MATLAB by entering
>> logm(A)
These are the only explicit MATLAB commands for applying mathematical functions to matrices. How-
ever, there is a general matrix function for the other mathematical functions. The command
>> funm(A, <function handle>)
evaluates <function name>(A) for the MATLAB functions exp, sin, cos, sinh, and cosh as well as
user-defined functions.
Matrix Functions
123
15. Mathematical Functions Applied to Matrices
124
Appendix: Reference Tables
These tables summarize the functions and operations described in this tutorial. The number (or num-
bers) shown give the page number of the table where this entry is discussed.
Arithmetical Operators
Special Characters
125
Appendix: Reference Tables
Getting Help
demo Runs demonstrations of many of the capabilities of MATLAB. (p. 16, 54)
doc On-line reference manual. (p. 16)
help On-line help. (p. 16)
helpdesk Loads the main page of the on-line reference manual. (p. 16)
load Loads back all of the variables which have been saved previously. (p. 16)
lookfor Searches all MATLAB commands for a keyword. (p. 16)
profile Profile the execution time of a MATLAB code. This is very useful for improving
the performance of a code by determining where most of the CPU time is spent.
(p. 92)
save Saves all of your variables. (p. 16)
type Displays the actual MATLAB code. (p. 14, 16)
who Lists all the current variables. (p. 16)
whos Lists all the current variables in more detail than who. (p. 16)
C Abort the command which is currently executing (i.e., hold down the control key
ˆ and type “c”). (p. 16)
Predefined Variables
ans The default variable name when one has not been specified. (p. 9)
pi π. (p. 9)
eps Approximately the smallest positive real number on the computer such that
1 + eps 6= 1. (p. 9)
Inf ∞ (as in 1/0 ). (p. 9)
NaN Not-a-Number
√ (as in 0/0 ). (p. 9)
i √ −1 . (p. 9)
j −1 . (p. 9)
realmin The smallest “usable” positive real number on the computer. (p. 9)
realmax The largest “usable” positive real number on the computer. (p. 9)
Format Options
126
Appendix: Reference Tables
Input-Output Functions
csvread Reads data into MATLAB from the named file, one row per line of input. (p. 48)
csvwrite Writes out the elements of a matrix to the named file using the same format as
csvread. (p. 48)
diary Saves your input to MATLAB and most of the output from MATLAB to disk.
(p. 7)
fopen Opens the file with the permission string determining how the file is to be accessed.
(p. 64)
fclose Closes the file. (p. 64)
fscanf Behaves very similarly to the C command in reading data from a file using any
desired format. (p. 64)
fprintf Behaves very similarly to the C command in writing data to a file using any de-
sired format.
It can also be used to display data on the screen. (p. 64, 64)
input Displays the prompt on the screen and waits for you to enter whatever is desired.
(p. 10)
load Reads data into MATLAB from the named file, one row per line of input. (p. 48)
print Prints a plot or saves it in a file using various printer specific formats. (p. 48)
127
Appendix: Reference Tables
abs Absolute value (p. 12, 13) cotd Cotangent (argument in degrees).
acos Inverse cosine. (p. 12) (p. 12)
acosd Inverse cosine (result in degrees). csc Cosecant. (p. 12)
(p. 12) cscd Cosecant (argument in degrees).
acosh Inverse hyperbolic cosine. (p. 12) (p. 12)
acot Inverse cotangent. (p. 12) exp Exponential function. (p. 12)
acotd Inverse cotangent (result in de- factorial Factorial function. (p. 12)
grees). (p. 12) fix Round toward zero to the nearest
acoth Inverse hyperbolic cosine. (p. ) integer. (p. 12)
acsc Inverse cosecant. (p. 12) floor Round downward to the nearest
acscd Inverse cosecant (result in degrees). integer. (p. 12)
(p. 12) imag The imaginary part of a complex
angle Phase angle of a complex number. number. (p. 13)
(p. 13) log The natural logarithm, i.e., to the
asec Inverse secant. (p. ) base e. (p. 12)
asec Inverse secant (result in degrees). log10 The common logarithm, i.e., to the
(p. ) base 10. (p. 12)
asin Inverse sine. (p. 12) mod The modulus after division. (p. 12)
asin Inverse sine (result in degrees). real The real part of a complex number.
(p. 12) (p. 13)
asinh Inverse hyperbolic sine. (p. 12) rem The remainder after division.
atan Inverse tangent. (p. 12) (p. 12)
atand Inverse tangent (result in degrees). round Round to the closest integer. (p. 12)
(p. 12) sec Secant. (p. 12)
atan2 Inverse tangent using two argu- secd Secant (argument in degrees).
ments. (p. 12) (p. 12)
atanh Inverse hyperbolic tangent. (p. 12) sign The sign of the real number. (p. 12)
ceil Round upward to the nearest inte- sin Sine. (p. 12)
ger. (p. 12) sind Sine (argument in degrees). (p. 12)
conj Complex conjugation. (p. 13) sinh Hyperbolic sine. (p. 12)
cos Cosine. (p. 12) sqrt Square root. (p. 12)
cosd Cosine (argument in degrees). tan Tangent. (p. 12)
(p. 12) tand Tangent (argument in degrees).
cosh Hyperbolic cosine. (p. 12) (p. 12)
cot Cotangent. (p. 12) tanh Hyperbolic tangent. (p. 12)
A+B Matrix addition. (p. 7, 28) A.*B Elementwise multiplication. (p. 28)
A-B Matrix subtraction. (p. 7, 28) A. p Elementwise exponentiation. (p. 28)
A*B Matrix multiplication. (p. 7, 28) p. A
ˆ
A n Matrix exponentiation. (p. 7, 28) A. B
ˆ
ˆ
A\b The solution to Ax = b by Gaussian A./B
ˆ Elementwise division. (p. 28)
elimination when A is a square non- B.\A Elementwise left division, i.e., B.\A is
singular matrix. (p. 28, 63) exactly the same as A./B. (p. 28)
A\B The solution to AX = B by Gaussian
elimination. (p. 28)
b/A The solution to xA = b where x and
b are row ve
tors. (p. 7, 28)
B/A The solution to XA = B. (p. 28)
128
Appendix: Reference Tables
Elementary Matrices
Specialized Matrices
Manipulating Matrices
cat Concatenates arrays; this is useful for putting arrays into a higher-dimensional
array. (p. 35)
clear Deletes a variable or all the variables. This is a very dangerous
ommand.
(p. 9)
diag Extracts or creates diagonals of a matrix. (p. 25)
fliplr Flips a matrix left to right. (p. 25)
flipud Flips a matrix up and down. (p. 25)
ipermute The inverse of permute. (p. 35)
permute Reorders the dimensions of a multidimensional array. (p. 35)
spdiags Generates a sparse matrix by diagonals. (p. 95)
repmat Tiles a matrix with copies of another matrix. (p. 25)
reshape Reshapes the elements of a matrix. (p. 25)
rot90 Rotates a matrix a multiple of 90◦ . (p. 25)
squeeze Removes (i.e., squeezes out) dimensions which only have one element. (p. 35)
triu Extracts the upper triangular part of a matrix. (p. 25)
tril Extracts the lower triangular part of a matrix. (p. 25)
[] The null matrix. This is also useful for deleting elements of a vector and rows or
columns of a matrix. (p. 25)
129
Appendix: Reference Tables
Two-Dimensional Graphics
130
Appendix: Reference Tables
Three-Dimensional Graphics
clf Clear a figure (i.e., delete everything in the figure (p. 54)
demo Runs demonstrations of many of the capabilities of MATLAB. (p. 16, 54)
figure Creates a new graphics window and makes it the current target. (p. 54)
fplot Plots the specified function within the limits given. (p. 49)
gtext Places the text at the point given by the mouse. (p. 54)
image Plots a two-dimensional image. (p. 54)
legend Places a legend on the plot. (p. 54)
text Adds the text at a particular location. (p. 54)
ginput Obtains the current cursor position. (p. 54)
get Returns the current value of the property of an object. (p. 56)
set Sets the value of the property, or properties of an object. (p. 56)
gca The current axes handle. (p. 56)
gcf The current figure handle. (p. 56)
131
Appendix: Reference Tables
errorbar Plots a curve through data points and also the error bar at each data point.
(p. 49)
hist Plots a histogram of the elements of a vector. (p. 49)
max The maximum element of a vector. (p. 34)
min The minimum element of a vector. (p. 34)
mean The mean, or average, of the elements of a vector. (p. 34)
norm The norm of a vector or a matrix. (p. 34)
prod The product of the elements of a vector. (p. 34)
sort Sorts the elements of a vector in increasing order. (p. 34)
std The standard deviation of the elements of a vector. (p. 34)
sum The sum of the elements of a vector. (p. 34)
& Logical AND. (p. 73) < Less than. (p. 72)
| Logical OR. (p. 73) <= Less than or equal to. (p. 72)
Logical NOT. (p. 73) == Equal. (p. 72)
˜xor Logical EXCLUSIVE OR. (p. 73) > Greater than. (p. 72)
&& A short-circuiting logical AND. (p. 73) >= Greater than or equal to. (p. 72)
|| A short-circuiting logical OR. (p. 73) = Not equal to. (p. 72)
˜
strcmp Comparing strings. (p. 72)
132
Appendix: Reference Tables
Flow Control
Logical Functions
all True if all the elements of a vector are true; operates on the columns of a matrix.
(p. 78)
any True if any of the elements of a vector are true; operates on the columns of a ma-
trix. (p. 78)
exist False if this name is not the name of a variable or a file. (p. 78)
find The indices of a vector or matrix which are nonzero. (p. 78)
ischar True if a vector or array contains character elements. (p. 78)
isempty True if the matrix is empty, i.e., []. (p. 78)
isfinite Generates a matrix with 1 in all the elements which are finite (i.e., not Inf or
NaN ) and 0 otherwise. (p. 78)
isinf Generates a matrix with 1 in all the elements which are Inf and 0 otherwise.
(p. 78)
islogical True for a logical variable or array. (p. 78)
isnan Generates a matrix with 1 in all the elements which are NaN and 0 otherwise.
(p. 78)
logical Converts a numeric variable to a logical one. (p. 78)
133
Appendix: Reference Tables
Debugging Commands
134
Appendix: Reference Tables
ode45 Non-stiff ode solver; fourth-order, one-step method for the ode y′ = f(t, y). (p. 97)
ode23 Non-stiff ode solver; second-order, one-step method. (p. 97)
ode113 Non-stiff ode solver; variable-order, multi-step method. (p. 97)
ode15s Stiff ode solver; variable-order, multi-step method. (p. 97)
ode23s Stiff ode solver; second-order, one-step method. (p. 97)
ode23t Stiff ode solver; trapezoidal method. (p. 97)
ode23tb Stiff ode solver; second-order, one-step method. (p. 97)
ode15i Stiff ode solver; variable-order, multi-step method for the fully implicit ode
f(t, y, y′ ) = 0. (p. 106)
odeset Assigns values to properties of the ode solver. (p. 101)
Boundary-Value Solver
bvp4c Numerically solves y′ (x) = f(x, y) for x ∈ [a, b] with given boundary conditions
and an initial guess for y. (p. 110)
bvpinit Calculates the initial guess either by giving y directly or by using a function
y = initial guess function(x). (p. 110)
deval Interpolate to determine the solution desired points. (p. 110)
135
Appendix: Reference Tables
Matrix Functions
136
Solutions To Exercises
These are the solutions to the exercises given in subsections 1.9, 2.10, and 4.5.
137
Solutions To Exercises
138
ASCII Table
ASCII Table
Control Control
Octal Decimal Sequence Description Octal Decimal Sequence Description
000 0 @ Null character 100 64 @ AT symbol
001 1
ˆ A Start of header 101 65 A
002 2
ˆ B Start of text 102 66 B
003 3
ˆ C End of text 103 67 C
004 4
ˆ D End of transmission 104 68 D
005 5
ˆ E Enquiry 105 69 E
006 6
ˆ F Acknowledgment 106 70 F
007 7
ˆ G Bell 107 71 G
010 8
ˆ H Backspace 110 72 H
011 9
ˆ I Horizontal tab 111 73 I
012 10
ˆ J Line feed 112 74 J
013 11
ˆ K Vertical tab 113 75 K
014 12
ˆ L Form feed 114 76 L
015 13
ˆ M Carriage return 115 77 M
ˆ
016
017
14
15
ˆ
ˆ
N
O
Shift out
Shift in
116
117
78
79 ˜
N
O
020 16 P Data link escape 120 80 P
021 17
ˆ Q Device control 1 (often XON) 121 81 Q
022 18
ˆ R Device control 2 122 82 R
023 19
ˆ S Device control 3 (often XOFF) 123 83 S
024 20 ˆ T Device control 4 124 84 T
025 21
ˆ U Negative acknowledgement 125 85 U
026 22
ˆ V Synchronous idle 126 86 V
027 23
ˆ W End of transmissions block 127 87 W
030 24
ˆ X Cancel 130 88 X
031 25
ˆ Y End of medium 131 89 Y
032 26
ˆ Z Substitute 132 90 Z
033 27
ˆ [ Escape 133 91 [ Left bracket
034 28
ˆ \ File separator 134 92 \ Back slash
035 29
ˆ ] Group separator 135 93 ] Right bracket
036 30
ˆ Record separator 136 94 Caret
037 31
ˆˆ Unit separator 137 95
ˆ Underscore
040 32
ˆ Space 140 96 ‘ Opening single quote
041 33 ! 141 97 a
042 34 ” Double quote 142 98 b
043 35 # Numer sign 143 99 c
044 36 $ Dollar sign 144 100 d
045 37 % Percent 145 101 e
046 38 & Ampersand 146 102 f
047 39 ’ Closing single quote (apostrophe) 147 103 g
050 40 ( Left parenthesis 150 104 h
051 41 ) Right parenthesis 151 105 i
052 42 * Asterisk 152 106 j
053 43 + Plus sign 153 107 k
054 44 , Comma 154 108 l
055 45 - Minus sign or dash 155 109 m
056 46 . Dot 156 110 n
057 47 / Forward slash 157 111 o
060 48 0 160 112 p
061 49 1 161 113 q
062 50 2 162 114 r
063 51 3 163 115 s
064 52 4 164 116 t
065 53 5 165 117 u
066 54 6 166 118 v
067 55 7 167 119 w
070 56 8 170 120 x
071 57 9 171 121 y
072 58 : Colon 172 122 z
073 59 ; Semicolon 173 123 { Left brace
074 60 < Less than sign 174 124 | Vertical bar
075 61 = Equal sign 175 125 } Right brace
076 62 > Greather than sign 176 126 Tilde
077 63 ? Question mark 177 127
ˆ? Delete
American Standard Code for Information Interchange (ASCII) specifies a correspondence between bit pat-
terns and character symbols. The octal and decimal representations of the bit patterns are shown along
139
ASCII Table
with a description of the character symbol. The first 32 codes (numbers 0–31 decimal) as well as the last
(number 127 decimal) are non-printing characters which were initially intended to control devices or pro-
vide meta-information about data streams. For example, decimal 10 ended a line on a line printer and
decimal 8 backspaced one character so that the preceding character would be overstruck. The control
sequence column shows the traditional key sequences for inputting these non-printing characters where
the caret ( ) represents the “Control” or “Ctrl” key which must be held down while the following key is
depressed.
ˆ
140
Index
Note: In this index MATLAB commands come first, followed by symbols, and only then does the index begin
with “A”.
Note: All words shown in typewriter font are MATLAB commands or predefined variables unless it is specifically
stated that they are defined locally (i.e., in this document).
Note: If an item is a primary topic of a section, an appendix, or a subsection, this is indicated as well as the page
number (in parentheses).
141
feval, 86, 89, 90, 92, 134 linspace, 43, 47, 49, 130
fft, 118, 121, 134 load, 15, 16, 47, 48, 53, 126, 127
fftshift, 118, 120, 121, 134 be careful, 47
fieldnames, 42 log, 12, 128
figure, 52, 54, 131 logical, 77, 78, 133
fill, 54, 130 loglog, 45, 49, 130
fill3, 54, 131 logm, 123, 136
find, 76, 77, 78, 94, 95, 133, 135 log10, 12, 128
fix, 12, 128 lookfor, 14, 16, 79, 86, 126
fliplr, 23, 25, 129 lu, 68, 70, 132
flipud, 23, 25, 129 max, 32, 34, 132
floor, 12, 128 mean, 32, 34, 132
fminbnd, 113, 115, 135 mesh, 50, 51, 53, 131
fminsearch, 113, 115, 135 meshgrid, 50, 51, 131
fopen, 63, 64, 127 min, 34, 132
for, 22, 71, 75, 133 mod, 12, 128
format, 10, 11, Subsect. 2.6 (29), 126 nargin, 81, 88, 134
fplot, 38, 45, 54, 131 nargout, 81, 88, 134
fprintf, 8, 39, 47, 63, 64, 127 nnz, 94, 95, 135
fscanf, 47, 63, 64, 127 norm, 33, 34, 68, 70, 81, 132
full, 93, 95, 135 null, 68, 70, 132
function, 79, 86, 88, 134 num2str, 39, 42, 48, 64, 131
funm, 123, 136 odeset, 100, 101, 105, 135
fzero, 112, 113, 115, 135 ode113, 97, 135
gca, 56, 131 ode15i, 105, 106, 135
gcf, 56, 131 ode15s, 97, 135
get, 56, 131 ode23, 97, 135
getfield, 42 ode23s, 97, 135
ginput, 51, 54, 131 ode23t, 97, 135
global, 84, 88, 134 ode23tb, 97, 135
gtext, 52, 53, 54, 55, 131 ode45, 97, 135
help, 4, 14, 16, 79, 86, 126 ones, 19, 20, 129
helpdesk, 15, 126 optimset, 113, 115, 135
hilb, 29, 31, 66, 90, 129 orth, 69, 70, 132
hist, 46, 49, 130, 132 orderfields, 42
hold, 44, 49, 130 otherwise, 74, 75, 133
if, 22, 72, 75, 133 path, 80, 130
ifft, 118, 121, 134 pause, 82, 88, 130
ifftshift, 118, 120, 121, 134 pchip, 112, 136
imag, 13, 128 permute, 35, 129
image, 53, 54, 131 persistent, 85, 88, 134
inline, 38 pinv, 62, 63, 132
input, 10, 127 plot, 43, 44, 45, 49, 111, 130
interp1, 112, 136 plot3, 50, 51, 131
interp2, 112, 136 polar, 46, 49, 130
interp3, 112, 136 poly, 110, 112, 136
interpn, 112, 136 polyder, 111, 112, 136
inv, 26, 67, 70, 132 polyfit, 111, 112
ipermute, 35, 129 polyval, 110, 111, 112, 136
ischar, 78, 133 polyvalm, 110, 112, 136
isempty, 78, 85, 133 ppval, 112, 136
isfield, 42 print, 47, 48, 127
isfinite, 78, 133 prod, 34, 132
isinf, 78, 133 profile, 90, 92, 126
islogical, 77, 78, 133 qr, 69, 70, 132
isnan, 78, 133 quad, 114, 115, 135
keyboard, 83, 88, 134 quadgk, 114, 115, 135
lasterr, 89, 90, 92, 134 quadl, 114, 115, 135
legend, 52, 54, 131 rand, 19, 20, 46, 61, 129
length (number of elements in), 19, 20, 33, 77, 129 randn, 19, 20, 46, 129
linsolve, 57, 60, 132 randperm, 19, 20, 129
142
rank, 69, 70, 132 true, 73, 75, 129
rats, 63, 130 type, 14, 15, 16, 79, 86, 126
real, 13, 128 vander, 111, 112, 129
rem, 12, 128 vectorize, 38, 42
repmat, 24, 25, 129 view, 50, 51, 131
reshape, 22, 24, 25, 129 while, 22, 74, 75, 133
return, 81, 83, 88, 134 who, 15, 16, 126
rmfield, 42 whos, 15, 16, 126
roots, 110, 112, 136 xlabel, 46, 49, 52, 55, 130
rot90, 25, 129 xor, 73, 75, 132
round, 12, 128 ylabel, 46, 49, 52, 55, 130
rref, Sect. 5 (57), 60, 88, 132 zeros, 19, 20, 129
save, 15, 16, 126 zlabel, 51, 53, 55, 131
sec, 12, 128
secd, 12, 128 Symbols
semilogx, 45, 49, 130
semilogy, 45, 49, 130 +, 7, 25, 28, 125, 128
set, 55, 56, 131 exception to, 27
setfield, 42 -, 7, 25, 28, 125, 128
sign, 12, 128 *, 7, 25, 28, 125, 128
sin, 12, 128 .*, 26, 28, 125, 128
sind, 12, 128 /, 7, 26, 28, 125, 128
sinh, 12, 128 warning about matrix division, 26
size, 19, 20, 129 ./, 26, 28, 125, 128
sort, 33, 34, 132 \, 7, 28, 57, 59, 62, 63, 125, 128
sparse, 93, 94, 95, 135 .\, 26, 28, 128
spconvert, 94, 95, 135
ˆ , 6, 7, 26, 28, 125, 128
spdiags, 93, 95, 135
differences from diag, 93
ˆ
. , 27, 28, 128
′
, 7, 18, 20, 129
speye, 95, 129, 135 . ′ , 18, 20, 129
spfun, 95, 135 ..., 14, 125
spline, 112, 136 %, 14, 125
sprand, 94, 95, 129, 135 ,, 7, 9, 17, 25, 125
sprandn, 94, 95, 129, 135 ;, 7, 9, 17, 25, 125
sprandsym, 94, 95, 129 :, 18, Subsect. 2.2 (21), Subsect. 2.3 (21), 25, 125
sprintf, 39, 42, 131 <, 72, 132
spy, 95, 135 <=, 72, 132
sqrt, 12, 31, 128 >, 72, 132
sqrtm, 26, 123, 136 >=, 72, 132
squeeze, 35, 129 ==, 72, 132
sscanf, 39, 42, 131 =, 72, 132
std, 33, 34, 132 ˜
&, 73, 75, 132
strcmp, 72, 131, 132 &&, 73, 132
str2num, 39, 42, 131 |, 73, 75, 132
struct, 41, 42, 131 ||, 73, 132
subplot, 44, 49, 51, 130, 131 , 73, 75, 132
sum, 34, 76, 132 ˜
!, See factorial
surf, 50, 51, 53, 131 [], 24, 25, 31, 129
svd, 69, 70, 132 @, 37
switch, 22, 74, 75, 133 ↑ up-arrow key, 6, 7, 125
different than in C, 74
tan, 12, 128 A
tand, 12
tanh, 12, 128 AH , See Conjugate transpose
text, 51, 53, 54, 55, 131 AT , See Transpose
tic, 28, 128, 130 A+ , See Pseudoinverse
title, 46, 49, 55, 130 Abort statement, 14
toc, 28, 128, 130 abs, 12, 13, 128
tril, 23, 25, 129 Accuracy, 10
triplequad, 115 principle, 11
triu, 23, 25, 129 acos, 12, 128
143
C
acosd, 12, 128
acosh, 12, 128 ˆCC,(programming
14, 16, 126
language), 7, 21, 37, 41, 42, 47, 54, 63,
acot, 12, 128 64, 74, 84, 85, 127, 131
acotd, 12, 128 C++ (programming language), 41, 89
acsc, 12, 128 Calculator, Subsect. 1.1 (6)
acscd, 12, 128 case, 74, 75, 133
all, 78, 133 different than in C, 74
AND (logical operator), 73, 75, 132 Case sensitive, 9
angle, 13, 128 cat, 34, 35, 129
Anonymous functions, See Function Catching errors, 89
ans, 8, 9, 126 ceil, 12, 128
any, 78, 133 cell, 40, 42, 131
Arithmetic progression, 21 Cell array, 37, Subsect. 3.4 (40), 46
Arithmetical operations, Subsect. 1.1 (6), Subsect. 2.4 celldisp, 40, 42, 131
(25), 125 Character string, 7, Subsect. 3.3 (39), 131
+, 7, 25, 28, 125, 128 appending to, 39
exception to, 27 concatenating, 39
-, 7, 25, 28, 125, 128 converting to, 39
/, 7, 26, 28, 125, 128 comparing strings, 72
warning about matrix division, 26 executing, 88
./, 26, 28, 125, 128 multiline, 39
*, 7, 25, 28, 125, 128 TEX commands in, 52
.*, 26, 28, 125, 128 chol, 65, 70, 132
\, 7, 28, 57, 59, 62, 63, 125, 128 Cholesky decomposition, 65
.\, 26, 28, 128 clear, 8, 9, 12, 31, 129
ˆ , 7, 26, 28, 125, 128 danger in using, 8
ˆ
. , 27, 28, 128
elementwise, 26, 27
Clear (a figure), 52
See also clf
Array, Sect. 2 (16) clf, 53, 54, 131
See also Matrix, Multidimensional array, Vector, or Closure, 99, 113
Cell array Clown, 53
ASCII character representation, 39, 51, 139 Colon operator, 18, Subsect. 2.2 (21), Subsect. 2.3 (21),
asec, 128 25, 125
asecd, 128 possible floating-point errors in, 21, 43
asin, 12, 128 See also linspace
asind, 12, 128 colorbar, 53, 54, 131
asinh, 12, 128 Color map, 53
atan, 12, 128 colormap, 53, 54, 131
atand, 12, 128 Colors, See RGB components
atanh, 12, 128 Command, 3
atan2, 12, 128 See also Function
Augmented matrix form, 57–60 Comment character, 14, 125
See also Matrix Complex conjugate, 13
Average value, 32 Complex numbers, 6, Subsect. 1.6 (13)
axis, 44, 49, 51, 53, 130, 131 Conchoid of Nicodemes
cond, 61, 65, 70, 132
B condest, 65, 70, 132
Condition number, See Matrix
Ball, 103–105 conj, 13, 128
ballode, 101 Conjugate transpose, 18
Bessel’s equation, See Initial-value ordinary differential See also Transpose
equations Continuation (of a line), 14, 125
Binary format, 15, 47 Continuation method, 109
Boundary-value ordinary differential equations, Sect. 11 continue, 74, 75, 133
(106), 110, 135 contour, 50, 51, 131
continuation method, 109 Contour plot, 50
break, 74, 75, 133 contour3, 50, 51, 131
bvp4c, 107, 108, 110, 135 Control flow, See Programming language
bvpinit, 108, 110, 135 cos, 12, 128
144
cosd, 12, 128 duffing a (locally defined), 98, 101
cos z, 13 duffing c (locally defined), 99, 100
cosh, 12, 128 duffing event (locally defined), 102
cot, 12, 128 duffing n (locally defined), 99, 102
cotd, 12, 128 duffing ode (locally defined), 99
CPU, 27 duffing p (locally defined), 99
cputime, 27, 28, 128, 130 duffing p2 (locally defined), 99
csc, 12, 128
cscd, 12, 128 E
csvread, 47, 48, 63, 127
csvwrite, 47, 48, 63, 127 ez , 13
Cubic splines, See Interpolation Earth, 53
cumsum, 33, 34 echo, 83, 88, 134
Cursor eig, 29, 66, 70, 81, 132
entering current position, 51 Eigenvalues, 29, 65, 66, 67, 69, 81
definition of, 66
D Eigenvectors, 66, 67, 69, 81
eigs, 67, 70, 132
Data else, 72, 75, 133
best polynomial fit to, 110 elseif, 72, 75, 133
closing files, 63 end, 22, 71, 72, 74, 75, 86, 88, 133, 134
manipulation, Subsect. 2.8 (32), 132 eps, 9, 10, 74, 126
opening files, 63 See also Machine epsilon
reading into MATLAB, 47, 48, 63, 94, 127 Erase (a figure), 52
writing from MATLAB, 47, 48, 63, 127 See also clf
Data types, 37 error, 81, 88, 133, 134
dblquad, 115, 135 Error bars, 46, 47
dbclear, 83, 134 errorbar, 47, 49, 130, 132
dbcont, 83, 134 Euclidean length, See Length of a vector
dbdown, 83, 134 eval, 88, 89, 90, 134
dbquit, 83, 134 EXCLUSIVE OR (logical operator), 73, 75, 132
dbstack, 83, 134 exist, 78, 133
dbstatus, 83, 134 exp, 12, 13, 128
dbstep, 83, 134 expm, 122, 123, 136
dbstop, 83, 134 Exponentiation, 6, 7, 26
dbtype, 83, 134 Extrapolation, 111
dbup, 83, 134 See also Interpolation
Debugging m-files, See Function files and Script files eye, 19, 20, 129
demo, 3, 15, 16, 42, 51, 54, 126, 131 ezcontour, 50, 51, 131
Demonstration program, 3, 15, 51, 53 ezcontour3, 50, 51, 131
det, 66, 70, 132 ezmesh, 50, 51, 131
Determinant, 66 ezplot, 45, 49, 130
deval, 108, 110, 135 ezplot3, 50, 51, 131
diag, 22, 25, 129 ezpolar, 46, 49, 130
Diagonals, See Matrix ezsurf, 50, 51, 131
diary, 6, 7, 127
diff, 33, 34 F
Digits of accuracy, 10
disp, 8, 9, 39, 64 factorial, 11, 12, 128
Display Factorial function, 11
formatting the, Subsect. 1.4 (10) false, 73, 75, 129
misinterpreting, Subsect. 2.6 (29) FALSE (result of logical expression), 73
suppressing, 7, 9, 17, 25, 125 Fast Fourier transform, See Fourier transform
variable, 8, 9, 64 fclose, 63, 64, 127
See also disp, fprintf feval, 86, 89, 90, 92, 134
doc, 4, 15, 16, 126 fft, 118, 121, 134
Documentation (MATLAB), 15 fftshift, 118, 120, 121, 134
Dot product, 27 Field, See Structure
Duffing’s equation, See Initial-value ordinary fieldnames, 42
differential equations figure, 52, 54, 131
duffing (locally defined) fill, 54, 130
145
fill3, 54, 131 Fun
tion (
ont.)
find, 76, 77, 78, 94, 95, 133, 135 passing function name in argument list, Subsect. 3.2
Finite differences, 33 (38), 89
fix, 12, 128 passing arguments indirectly, See Closure
Floating-point numbers, 9, 21 primary, 86
Floating-point operations, See Flops private, 88
fliplr, 23, 25, 129 return, 81, 83, 88, 134
flipud, 23, 25, 129 saving parameters in, 85–86
floor, 12, 128 subfunctions in, 80, 86
Flops (fl oating-point operations), 27 Function handle, 37, 42
Flow control, See Programming language Functions (mathematical)
fminbnd, 113, 115, 135 See also Polynomials
fminsearch, 113, 115, 135 common mathematical, Subsect. 1.5 (11)
fopen, 63, 64, 127 definite integrals of, 114
for, 22, 71, 75, 133 “hijacked”, 88
format, 10, 11, Subsect. 2.6 (29), 126 local minimum of, 113
Format options (in format command), 10, 11, 126 numerical operations on, 112, 115, 135
Format specifications (in fprintf, fscanf, sprintf, and zeroes of, 112, 114
sscanf), 63 funm, 123, 136
Fourier series, Sect. 14 (115) fzero, 112, 113, 115, 135
complex, 116
real, 115 G
Fourier transform, Sect. 14 (115)
discrete, Sect. 14 (115), 121, 134 Gauss-Kronrod quadrature (for numerical integration),
fast (FFT), 119 114
fplot, 38, 45, 54, 131 Gauss-Lobatto quadrature (for numerical integration),
fprintf, 8, 39, 47, 63, 64, 127 114
printing a matrix, 64 Gaussian elimination, 57, 61
specifications (format), 63 gca, 56, 131
Frequency, See Power gcf, 56, 131
fscanf, 47, 63, 64, 127 Generalized eigenvalue problem, 67
specifications (format), 63 get, 56, 131
full, 93, 95, 135 get intervals fast (locally defined), 92
function, 79, 86, 88, 134 get intervals slowly (locally defined), 91
Function, 22, Subsect. 8.3 (79) getfield, 42
anonymous, Subsect. 3.1 (37), 42 ginput, 51, 54, 131
warning, 38 global, 84, 88, 134
built-in, 11, 14, 15 Graphics, Sect. 4 (42)
commands in, 83, 88, 134 advanced techniques, Subsect. 4.3 (51), 131
comments in, 79 changing endpoints, 44
conflict between function and variable name, 11 customizing lines and markers, 44
debugging, 82, 83 demonstration, 42
definition line, 79 handle, Subsect. 4.4 (55)
differences from command, 3 holding the current plot, 44
end statement, 86 labelling, 51–54
ending, 86 text properties, 55
error, 81, 88, 133, 134 using TEX commands, 52
example using multiple input and output arguments, multiple plots, 44
81 multiple windows, 52
function (required word), 79, 86, 88, 134 object, 55
inline, 38 handle for an, 55
warning, 38 printing, 47, 48, 127
input and output arguments, 79, 83–84 properties, Subsect. 4.4 (55)
pass by reference, 79 saving to a file, 47, 48, 127
pass by value, 79 two-dimensional, Subsect. 4.1 (43), 130
variable number of, 81 three-dimensional, Subsect. 4.2 (49)
name of, 13 window, 42
warning about user-defined m-files, 14 Gravity, 104
nested, 80, 86 gravity (locally defined), 105
order in which MATLAB searches for functions, 80, gravity event (locally defined), 105
87 gravity init (locally defined), 105
146
gravity ode (locally defined), 105
gtext, 52, 53, 54, 55, 131 Inline functions, See Function
Inner product, 27
H input, 10, 127
Integration, numerical, 114
H
, See Conjugate transpose Interpolation, 111, 112
Handle, See Function handle cubic, 111
Handle graphics, See Graphics cubic splines, 111, 112
Helix, 50 Hermite cubic interpolation, 111
help, 4, 14, 16, 79, 86, 126 how to do extrapolation, 112
Help facility, Subsect. 1.8 (14) linear splines, 111
keyword, 14 interp1, 112, 136
getting help, 16, 126 interp2, 112, 136
helpdesk, 15, 126 interp3, 112, 136
Hermite polynomials, See Interpolation interpn, 112, 136
hilb, 29, 31, 66, 90, 129 inv, 26, 67, 70, 132
hilb local (locally defined), 80 ipermute, 35, 129
Hilbert matrix, 29, 30, 61, 66, 70, 80, 111 ischar, 78, 133
function file for, 80, 90 isempty, 78, 85, 133
hist, 46, 49, 130, 132 isfield, 42
Histogram, 46 isfinite, 78, 133
hold, 44, 49, 130 isinf, 78, 133
islogical, 77, 78, 133
I isnan, 78, 133
147
LOGICAL OR (short circuiting logical operator), 73, Matrix (
ont.)
132 QR decomposition, 69
Logical (data type), 37, 75 positive definite, 94
Logical expression, 72 preallocation of, 19, 40, 80
result of, 73 pseudoinverse of, 62
Logical functions, 78, 133 replicating, 24
Logical operators, 73, 132 reshaping, 22, 24
AND (&), 73, 75, 132 singular, 59, 60, 65, 66
AND (short-circuit) (&&), 73, 132 warning of, 67
applied to matrices, Subsect. 8.2 (75) singular value decomposition, 69
result of, 75 sparse, Sect. 9 (92), 135
EXCLUSIVE OR (xor), 73, 75, 132 specialized, 129
NOT ( ), 73, 75, 132 sum of elements, 32
˜
OR (|), 73, 75, 132 SVD, See Singular value decomposition (above)
OR (short-circuit) (||), 73, 132 symmetric, 18, 94
loglog, 45, 49, 130 tridiagonal, 65, 92
logm, 123, 136 unitary, 69
log10, 12, 128 upper triangular part of, 23
lookfor, 14, 16, 79, 86, 126 Vandermonde, See Vandermonde matrix
lu, 68, 70, 132 max, 32, 34, 132
LU decomposition, 68 Maximum value, 32
mean, 32, 34, 132
M Mean value, 32
Memory (of variables), 31
Machine epsilon (eps), 9, 126 mesh, 50, 51, 53, 131
calculation of, 74 meshgrid, 50, 51, 131
Mathematical functions, Subsect. 1.5 (11), 13, Subsect. M-file, 79
2.7 (31), 128 min, 34, 132
Matrix Minimum value, 32
augmented, 57–60 mod, 12, 128
is not a matrix, 58 Monotonicity, test for, 33
Cholesky decomposition, 65 Monty Python, 39
condition number, 65 Moore-Penrose conditions, 62
approximation to, 65 Mouse location, See ginput
defective, 66 Multidimensional arrays, Subsect. 2.9 (34)
deleting rows or columns, 24 permute order, 35
determinant of, See Determinant
diagonals of, 22, 93, 94 N
elementary, 20, 129
elementary operations, 129 NaN, 9, 126
empty, See See null below nargin, 81, 88, 134
extracting submatrices, 21 nargout, 81, 88, 134
full, 92 nested ex (locally defined), 87
generating, Subsect. 2.1 (17), Subsect. 2.3 (21) Newton’s laws, 103
individual elements, 19 nlode (locally defined), 107
by submatrices, 20 nlode all (locally defined), 109
Hermitian, 18 nlode bc (locally defined), 107
Hilbert, See Hilbert matrix nlode bc2 (locally defined), 107
identity, 19 nlode yic (locally defined), 108
inverse of, 67 nnz, 94, 95, 135
Jacobian, 98, 103 norm, 33, 34, 68, 70, 81, 132
lower triangular part of, 23, 68 Norm
unit, 68 matrix, 68
LU decomposition, 68 Frobenius, 68
manipulation, Subsect. 2.3 (21), 129 p -norm, 68
“masking” elements of, 77 vector, 68
maximum value, 32 NOT (logical operator), 73, 75, 132
minimum value, 32 Notation (for vectors and matrices), 5
multidimensional, Subsect. 2.9 (34) null, 68, 70, 132
null, 24, 25, 31, 129 Null matrix, 24, 25, 129
orthogonal, 69 Null space, 68
148
num2str, 39, 42, 48, 64, 131 Polynomials (
ont.)
order of, 111
O representing by vector, 110
roots of, 110
Ode, See Initial-value ordinary differential equations polyval, 110, 111, 112, 136
odeset, 100, 101, 105, 135 polyvalm, 110, 112, 136
ode113, 97, 135 Positive definite matrix, See Matrix
ode15i, 105, 106, 135 Power, 116, 117
ode15s, 97, 135 average, 116
ode23, 97, 135 definition of, 116
ode23s, 97, 135 frequency of, 116
ode23t, 97, 135 in each mode, 116, 117
ode23tb, 97, 135 instantaneous, 116
ode45, 97, 135 spectrum, 116
ones, 19, 20, 129 ppval, 112, 136
Operator precedence, Subsect. 2.5 (29) prealloc (locally defined), 81
optimset, 113, 115, 135 Precedence, See Operator precedence
OR (logical operator), 73, 75, 132 Predefined variables, See Variables
Ordinary differential equations, See Initial-value Principles about computer arithmetic, 9, 11
ordinary differential equations and Boundary-value print, 47, 48, 127
ordinary differential equations Printing, See Display
orderfields, 42 prod, 34, 132
orth, 69, 70, 132 Product
Orthonormal basis, 69 dot, See Dot product
otherwise, 74, 75, 133 inner, See Inner product
Outer product, 27 outer, See Outer product
Overdetermined system, See Linear system of equations profile, 90, 92, 126
Programming language (MATLAB), Sect. 8 (71)
P flow control, Subsect. 8.1 (71), 75, 133
break out of, 74
Parentheses, 9 continue loop, 74
path, 80, 130 for loops, 71
Path, See Search path if statement, 71
pause, 82, 88, 130 switch statement, 22, 74, 75, 133
pchip, 112, 136 different than in C, 74
permute, 35, 129 while loops, 73
persistent, 85, 88, 134 needed less frequently, 75
uses of, 85 Pseudoinverse, See Matrix
Phase plane, See Plotting Pseudorandom numbers, See Random numbers
pi, 8, 9, 126 Pythagorean theorem, 11
Piecewise polynomials, See Interpolation
pinv, 62, 63, 132 Q
plot, 43, 44, 45, 49, 111, 130
Plot, generating a, See Graphics QR decomposition, 69
Plotting qr, 69, 70, 132
a curve, 43, 49 quad, 114, 115, 135
a function, 45 Quadratic polynomial, roots of, 13
a parametric function, 45 quadgk, 114, 115, 135
an implicit function, 45 quadl, 114, 115, 135
in polar coordinates, 46 Quote mark, 7
phase plane, 98
plot3, 50, 51, 131 R
polar, 46, 49, 130
Polar coordinates, 46 rand, 19, 20, 46, 61, 129
poly, 110, 112, 136 randn, 19, 20, 46, 129
polyder, 111, 112, 136 Random matrix, 19, 23, 61, 95, 135
polyfit, 111, 112 Random numbers, 19
Polynomials, Sect. 12 (110), 136 Gaussian distribution, 19, 46
differentiating, 111 normal distribution, 19
evaluating, 110 pseudorandom numbers, 19
finding minimum and maximum of, 111 seed, 19
149
Random numbers (
ont.) Singular value decomposition, 69
state, 19 sinh, 12, 128
uniform distribution, 19, 46 size, 19, 20, 129
randperm, 19, 20, 129 sort, 33, 34, 132
rank, 69, 70, 132 Sort numbers, 33
Rank of matrix, 69 sparse, 93, 94, 95, 135
rats, 63, 130 spconvert, 94, 95, 135
Rational approximation to floating-point number, 63, spdiags, 93, 95, 135
130 differences from diag, 93
RCOND, 61, 66, 67 speye, 95, 129, 135
real, 13, 128 spfun, 95, 135
realmax, 9, 126 spline, 112, 136
realmin, 9, 10, 126 Splines, See Interpolation
Reduced row echelon form, 58 sprand, 94, 95, 129, 135
round-off errors in, 59 sprandn, 94, 95, 129, 135
Relational operators, 72, 132 sprandsym, 94, 95, 129
<, 72, 132 sprintf, 39, 42, 131
<=, 72, 132 specifications (format), 63
>, 72, 132 spruce (locally defined function), 82
>=, 72, 132 spy, 95, 135
==, 72, 132 sqrt, 12, 31, 128
=, 72, 132 sqrtm, 26, 123, 136
˜matrix, Subsect. 8.2 (75) squeeze, 35, 129
result of, 75 sscanf, 39, 42, 131
rem, 12, 128 specifications (format), 63
Remainder, 12, 128 Standard deviation, 33
Request input, 10 Statements
repmat, 24, 25, 129 executing in text variables, 88
reshape, 22, 24, 25, 129 rerunning previous, 10
return, 81, 83, 88, 134 separating on a line, 7, 9, 17, 25, 125
RGB components (of a color), 53 std, 33, 34, 132
rmfield, 42 Stiff ode, 97, 103
roots, 110, 112, 136 strcmp, 72, 131, 132
rot90, 25, 129 String, See Character string
round, 12, 128 str2num, 39, 42, 131
Round-off errors, Subsect. 1.3 (9), 11, 21, 23, 26, 30, 31, struct, 41, 42, 131
43, 59, Subsect. 5.2 (60), 61, 67 Structure, 37, 41, 113
rref, Sect. 5 (57), 60, 88, 132 field, 41
Subfunctions, See Function files
S subplot, 44, 49, 51, 130, 131
warning, 44
save, 15, 16, 126 sum, 34, 76, 132
Save terminal commands, 6 surf, 50, 51, 53, 131
Save work, 6 Surface plot, 50
Scientific notation, 6 changing view, 50
Scope, See Variables filled-in, 50
Script files, 13, 79, 83 wire-frame, 50
debugging, 82, 83 svd, 69, 70, 132
names of, 13 SVD, See Singular value decomposition
Search path, 80, 87 switch, 22, 74, 75, 133
sec, 12, 128
secd, 12, 128 T
semilogx, 45, 49, 130
T
semilogy, 45, 49, 130 , See Transpose
set, 55, 56, 131 tan, 12, 128
setfield, 42 tand, 12
sign, 12, 128 tanh, 12, 128
Simpson’s method (of numerical integration), 114 Taylor series expansion, 122
sin, 12, 128 TEX, See Character string
sind, 12, 128 text, 51, 53, 54, 55, 131
sin z, 13 Text properties, 55
150
Variables, string (
ont.)
Text window, 42
See also Character string
tic, 28, 128, 130
typeless, 8, 84
Time, See cputime, tic, toc
vdp n (locally defined), 103
title, 46, 49, 55, 130
vdp ode (locally defined), 103
multiline, See Character string, multiline
vdpj n (locally defined), 103
Title
Vector
for entire figure, 56
average value of elements, 32
toc, 28, 128, 130
column vs. row, 17
Transpose, 18, 20, 129
deleting elements, 24
conjugate, 18, 20, 129
generating, Subsect. 2.1 (17)
Trigonometric functions, Subsect. 1.5 (11), Subsect. 2.7
individual elements, 19
(31)
“masking” elements of, 77
tril, 23, 25, 129
maximum value, 32
triplequad, 115
mean value of elements, 32
triu, 23, 25, 129
minimum value, 32
true, 73, 75, 129
preallocation of, 19, 40, 80
TRUE (result of logical expression), 73
repeated elements, testing for, 33
type, 14, 15, 16, 79, 86, 126
sort elements, 33
standard deviation of elements, 33
U sum of elements, 32
vectorize, 38, 42
Underdetermined system, See Linear system of
Vectorizing code, Subsect. 8.5 (90)
equations profile execution time, 90
view, 50, 51, 131
V
W
Van der Pol’s equation, See Initial-value ordinary
differential equations
while, 22, 74, 75, 133
vander, 111, 112, 129 who, 15, 16, 126
Vandermonde matrix, 111 whos, 15, 16, 126
Variables, Subsect. 1.2 (7) Workspace, 6, 83
about, 9
case sensitive, 9 X
conflict between variable and function name, 11
deleting, 9 xlabel, 46, 49, 52, 55, 130
global, 84 xor, 73, 75, 132
inputting, 10
list of, 15 Y
loading, 15
local, 79, 84 ylabel, 46, 49, 52, 55, 130
logical, 77
modifying, 84 Z
overwriting, 7
persistent, 85 zeros, 19, 20, 129
predefined, 8, 9, 126 zlabel, 51, 53, 55, 131
ans, 8, 9, 126
eps, 9, 10, 74, 126
i, 6, 9, 126
Inf, 9, 44, 126
j, 6, 9, 126
NaN, 9, 126
overwriting, 8, 71
pi, 8, 9, 126
realmax, 9, 126
realmin, 9, 10, 126
saving, 15
saving local variables in functions, 85
scope of, 87
special cases of vectors or matrices, 7
static, 85
string, 7, Subsect. 3.3 (39)
151
152