Introduction To Matlab: Ross L. Spencer and Michael Ware
Introduction To Matlab: Ross L. Spencer and Michael Ware
This is a tutorial to help you get started in Matlab. Examples of Matlab code in
this pamphlet are in typewriter font like this. As you read through the text,
type and execute in Matlab all of the examples, either at the À command line
prompt or in a test program you make called test.m. Longer sections of code are
set off and named. This code can be found as files on the Physics 330 web page at
physics.byu.edu/Courses/Computational.
This booklet can also be used as a reference manual because it is short, it has
lots of examples, and it has a table of contents and an index. It is almost true
that the basics of Matlab are in chapters 1-7 while physics applications are in
chapters 11-13. Please tell us about mistakes and make suggestions to improve
the text ([email protected]).
To find more details see the very helpful book Mastering MATLAB 7 by Duane
Hanselman and Bruce Littlefield.
v
Contents
1 Running Matlab 1
1.1 Getting Started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 It’s a Calculator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.3 Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.4 Matrix Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.5 Calculating . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.6 Matlab Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2 Scripts 9
2.1 The Matlab Desktop . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
2.2 Script Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.3 Input and Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
2.4 Input . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
2.5 Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
3 Debugging Code 13
3.1 Make Your Code Readable . . . . . . . . . . . . . . . . . . . . . . . 13
3.2 Debugging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.3 Pause command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
5 Basic Plotting 21
5.1 Linear Plots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
5.2 Plot Appearance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
5.3 Multiple Plots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
vii
viii CONTENTS
Index 99
Chapter 1
Running Matlab
1+2
5/6
cos(pi)
Note that Matlab’s standard trig functions are permanently set to radians mode,
but it also provides degree versions of the trig functions:
sind(90)
To enter numbers in scientific notation, like 1.23 × 1015 , use this syntax
1.23e15
Finally, note that the up-arrow key ↑ will display previous commands. And when
you back up to a previous command, you can hit Enter and it will execute again.
Or you can edit it and then execute the modified command. Do this now to
re-execute and edit some of the commands you have already typed.
1.3 Variables
While Matlab has other types of variables, you will mostly just use two types: the
matrix and the string. Variables are not declared before they are used, but are
defined on the fly. The assignment command is the equal sign. For instance,
a=20
1
2 Chapter 1 Running Matlab
creates the variable a and assigns the value 20 to it, and then the command
a=a+1
adds one to the stored value. Note that variable names in Matlab are case sensitive,
t An assign statement in so watch your capitalization. If you want to see the value of a variable, just type
programming is not a math- its name like this
ematical equation. It makes
perfect sense to write a=a+1 a
as assign statement: it tells
the computer to get the
String Variables
value of a and add 1 to it
and then store the evalu- String variables contain a sequence of characters, like this
ated quantity back in the
variable a. However, the s='This is a string'
mathematical equation
a = a + 1 is clearly false. Some Matlab commands require options to be passed to them using strings. Make
sure you enclose them in single quotes, as shown above.
Numerical Accuracy
All numbers in Matlab are stored as double-precision values which have 15 digits
of accuracy. When you display numbers to the screen, like this
x=355/113
you may think Matlab only works to 5 significant figures. This is not true; it’s just
displaying five. If you want to see all the digits type
format long e
x
The e stands for exponential notation. The four most useful formats to set are
format short % the default format
format long
format long e
format short e
to erase your user-defined value and restore the default value. To erase all the
variables in the workspace, simply type clear without anything after it
clear
You can enter a 1×4 row matrix using commas and braces
a=[1,2,3,4]
size(a)
or a 3×3 matrix with columns separated by commas and rows separated by semi-
colons And the matrix
A=[1,2,3;4,5,6;7,8,9]
size(A)
When you want to access the values of individual matrix elements, use the syntax
A(row,column). For example, to get the element of A in the 3rd row, 5th column
use
A(3,5)
And if you have a matrix or an array and you want to access the last element in a
row or column, you can use Matlab’s end command, like this:
b(end)
A(3,end)
And if you leave the middle number out of this colon construction, like this
t=0:20
The variable c now contains the first two elements of the second row of A. To load
a column vector b with all of the entries of the third column of the matrix A, you
can use the syntax
b=A(1:end,3)
Recall that the first index of a matrix is the row index, so this command tells
Matlab to select all of the rows of A in column 3. Since this type of operation is so
common in Matlab, there is a shorthand for selecting all of the entries in a given
dimension: just leave off the numbers around the colon, like this
b=A(:,3)
And to load a row vector c with the contents of the second row of the matrix A use
c=A(2,:)
1.5 Calculating
Matlab was built to crunch numbers, and it usually handles them much faster
than symbolic programs like Maple or Mathematica. Here are the basics.
t Testimonial: “I, Scott Berge-
son, do hereby certify that I
Add and Subtract
wrote a data analysis code
in Maple that took 25 min- Matlab knows how to add and subtract arrays and matrices. As long as A and B
utes to run. When I con-
are two variables of the same size (e.g., both 2×3 matrices), then A+B and A-B will
verted the code to Matlab it
add and subtract them as matrices:
took 15 seconds.”
A=[1,2,3;4,5,6;7,8,9]
B=[3,2,1;6,4,5;8,7,9]
A+B
A-B
1.5 Calculating 5
For a language that thinks everything in the world is a matrix, this is perfectly
natural. Try
A*B
A*[1;2;3]
A^3
But there are lots of times when we don’t want to do matrix multiplication.
Sometimes we want to take two big arrays of numbers and multiply their corre-
sponding elements together, producing another big array of numbers. Because
we do this so often (you will see many examples later on) Matlab has a special
symbol for this kind of multiplication:
B This “dot” operator stuff
.* is important. Be patient if
it is a little confusing now.
For instance, the dot multiplication between the arrays [a,b,c] and [d,e,f]
When we start plotting and
would be the array [a*d,b*e,c*f]. And since we might also want to divide two doing real calculations this
big arrays this way, Matlab also allows the operation will all become clear.
./
This “dot” form of the division operator divides each element of an array by the
corresponding element in another (equally sized) array. If we want to raise each
element of an array to a power, we use
.^
These “dot” operators are very useful in plotting functions and other kinds of
signal processing.
a(3)/b(2)
Note that in this case the things we are dividing are scalars (or 1×1 matrices
in Matlab’s mind), so Matlab will just treat this like the normal division of two
numbers. We don’t have to use the ./ command, although it wouldn’t hurt if we
did.
You can compare this answer with the sum to infinity, which is π2 /6, by typing
ans-pi^2/6
For matrices the sum command produces a row vector which is made up of
the sum of the columns of the matrix.
A=[1,2,3;4,5,6;7,8,9]
sum(A)
If you want to add up all of the elements in the array, just nest the sum command
like this
sum(sum(A))
Complex Arithmetic
Matlab works as easily with complex p numbers as with real ones. The variable i
is the usual imaginary number1 i = −1, unless you are so foolish as to assign it
some other value by using i as a variable name, like this:
i=3
B Don’t use i as a variable Don’t do this, or you will no longer have access to imaginary numbers. If you
name. accidentally do it the command clear i will restore it to its imaginary luster. By
using i you can do complex arithmetic, like this
a=1+2i
b=2-3i
a+b
a-b
a*b
a/b
1 If you are in a discipline where j is used for the imaginary number, Matlab can be your friend
too. The variables i and j have the same meaning in Matlab, and everything we say about i works
the same with j.
1.6 Matlab Functions 7
And like everything else in Matlab, complex numbers work as elements of arrays cos(x)
and matrices as well. sin(x)
When working with complex numbers we quite often want to pick off the real tan(x)
part or the imaginary part of the number, find its complex conjugate, or find its acos(x)
asin(x)
magnitude. Or perhaps we need to know the angle between the real axis and the
atan(x)
complex number in the complex plane. Matlab knows how do all of these atan2(y,x)
z=3+4i cosd
real(z) sind
imag(z) tand
conj(z) acosd
abs(z) asind
angle(z) atand
atan2d
Perhaps you recall Euler’s famous formula e i x = cos x + i sin x? Matlab knows exp(x)
it too. log(x)
log10(x)
exp(i*pi/4) log2(x)
sqrt(x)
Matlab knows how to handle complex arguments for all of the trig, exponential,
cosh(x)
hyperbolic, and Bessel functions. sinh(x)
tanh(x)
acosh(x)
1.6 Matlab Functions asinh(x)
atanh(x)
Matlab knows all of the standard functions found on scientific calculators and sign(x)
even many of the special functions like Bessel functions. Table 1.1 shows a bunch airy(n,x)
of them. Note that the natural log function ln x is the Matlab function log(x). To besselh(n,x)
get the base-10 log, use log10. besseli(n,x)
All of the functions in Table 1.1 work like the “dot” operators discussed in the besselj(n,x)
previous section (e.g. .* and ./). This means, for example, that it makes sense to besselk(n,x)
bessely(n,x)
take the sine of an array: the answer is just an array of sine values. For example,
erf(x)
type
erfc(x)
sin([pi/4,pi/2,pi]) erfcx(x)
erfinv(x)
and see what you get. Likewise, you could use the degree versions of the trigonom- gamma(x)
etry functions, like this: expint(x)
legendre(n,x)
cosd([0,45,90]) factorial(x)
Table 1.1 A sampling of the math-
Housekeeping Functions ematical functions available in
Matlab.
Matlab also has a bunch of other functions that don’t really do math but are useful
in programming. Two of the more useful housekeeping commands are max and
min, which return the maximum and minimum values of an array. For example,
create a couple of arrays like this
x=0:.01:5;
y=x.*exp(-x.^2);
8 Chapter 1 Running Matlab
and then you can find the max and min like this
ymin=min(y)
ymax=max(y)
And with a slight change of syntax max and min will also return the indices in the
clc clears the com-
mand window; use- array at which the maximum and minimum occur, like this
ful for beautifying
[ymin,imin]=min(y)
printed output
[ymax,imax]=max(y)
clear clears all assigned
variables Look at the values of imin and imax and discuss them with your lab partner until
you understand what they mean.
close all closes all figure There are many more housekeeping functions. We’ve listed several of them
windows;
in Table 1.2. Take a minute to familiarize yourself with the functions in the table;
close 3 Close figure 3
many of them will come in handy. Try
floor([1.5,2.7,-1.5])
length(a) the number of
elements in a vector
to convince yourself that these functions operate on matrices and not just on
size(c) the dimensions of a single numbers.
matrix
Typing in commands in the command window is just the tip of the iceberg of
what Matlab can do for you. Most of the work you will do in Matlab will be stored
in files called scripts, or m-files, containing sequences of Matlab commands to be
executed over and over again. Let’s walk through the process of writing a script.
• The Command window at the bottom allows you issue commands directly
to Matlab.
• The Editor window in the middle is where you write Matlab scripts. This
is where we’ll spend most of our time when using Matlab. If you’ve never
opened a script file, this window may be missing, but it will appear when
you create or edit a script.
9
10 Chapter 2 Scripts
• The Workspace window at the right displays all of the variables that Matlab
currently has in memory. Double clicking a variable launches the Array
Editor, which allows you to view and modify the values in your variables.
• The Current Folder window on the left displays the files in your current
directory. Double click on script files (*.m) to open them in the editor, or
use the navigation bar up above to navigate to a different folder.
You can rearrange the Matlab desktop using drag, drop, and docking, but we
recommend that you wait until you’ve used it for a while before you start dragging
things around.
Always save changes to your script before executing it in the command window.
Matlab loads scripts from the disk, not the editor window.
A convenient shortcut for running a script is to use the “Run” button on the
toolbar (the green “play” icon), or simply pressing the shortcut key F5, while in
the m-file editor window. This shortcut will save your script file, ask you if you
want to switch the current directory to where your script file is saved (if it isn’t
already pointed there), and then run the script for you. Use this method to run
your test.m script again.
Since something like 330lab1a is not a valid calculation, Matlab will give you an
error if you try and name your scripts like this. Also, do not use a space or a period
in the file name. If you must separate words in your file name, you can use the B Script names cannot begin
underscore character (e.g. my_script.m), but it is easier just to use names without with numbers or contain
spaces or periods
separators if you can.
The clear command clears all variables from Matlab’s memory and makes sure
that you don’t have leftover junk active in Matlab that will interfere with your
code. The close all command closes any figure windows that are open. The
obvious exception to the rule of beginning your scripts with these commands is if
you need to keep some data in memory for your script to run, or if you need to
leave a plot window open. Add these two lines at the beginning of your test.m
script, and run it again.
and then execute it. Look at the output in the command window. Even though
the variable a didn’t print, it is loaded with sin (5), as you can see by typing
a
2.4 Input
To have a script request and assign a value to the variable N from the keyboard,
put the command
N=input(' Enter a value for N - ')
in your script and run it again. Note that Matlab is asking for input in the Com-
mand Window. If you enter a single number, like 2.7, then N will be a scalar
variable. If you enter an array, like this: [1,2,3,4,5], then N will be an array. If
you enter a matrix, like this: [1,2,3;4,5,6;7,8,9], then N will be a 3 × 3 matrix.
And if you don’t want the variable you have entered to echo on the screen, end
the input command line with a semicolon.
2.5 Output
To display formatted results in the Command Window, you can use the fprintf
command. Type the following examples in the command window to see what
each one produces. (Hint: Use the ↑ key to save yourself a bunch of typing)
fprintf(' N =%g \n',500)
Note that the stuff inside the single quotes is a string which will print on the
screen; % is where the number you are printing goes; and the stuff immediately
after % is a format code. A g means use the “best” format; if the number is really big
or really small, use scientific notation, otherwise just throw 6 significant figures
on the screen in a format that looks good. The format 6.2f means use 2 decimal
places and fixed-point display with 6 spaces for the number. An e means scientific
notation, with the number of decimal places controlled like this: 1.10e.) Note: \n
is the command for a new line. If you want all the details on this stuff, see the
Matlab help entry for fprintf.
Chapter 3
Debugging Code
Your programs will usually fail the first time you run them. This is normal. In
this chapter we give you some guidance to help you quickly correct the problems
and get your code to execute.
Add Comments
Document your scripts by including comment lines that begin with %, like this:
% This is a comment line
Or you can put comments at the end of a line of code like this:
f=1-exp(-g*t) % compute the decay fraction
Get in the habit of documenting your code as you write it. If you don’t do it then,
you never will. Add a comment line to your test.m script now to start a good habit.
Wrap any lines that are too long to read without horizontal scrolling. It is hard to
find bugs you can’t easily see.
13
14 Chapter 3 Debugging Code
A = [ 1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16]
This makes the matrix look so nice in a script that you probably ought to use it
whenever possible.
If you program like this, your code won’t match the math, you’ll drive yourself
crazy with typos, and you’ll end your programming career prematurely due to
repetitive-stress injury. Do it this way
F=G*m1*m2/r12^2
and then add comments when needed to clarify the meaning of your variables,
like this
% r12 is the distance between the earth and the satellite
% m1 is the mass of the earth
3.2 Debugging
When your script fails you will need to examine the values stored in your variables
to see what went wrong. In Matlab this is easy because after you run a script all of
the data in that script is available at the Matlab À prompt. So if you need to know
the value of a at the end of your script, just type
a
and its value will appear on the screen. You can also explore the values stored in
memory using the Workspace window (the right pane in the desktop).
if (r==0)
% indicate that 3 is a factor of this n
fprintf(' 3 is a factor of %g \n', n);
else
% indicate that if 3 is not a factor of this n
fprintf(' 3 is not a factor of %g \n', n);
end
end
To see what a breakpoint does, put the cursor on the line “for n=1:N” in
the editor window and either click on Breakpoints on the tool bar and select
Set/Clear, or press F12, or click on the small dash to the right of the line of code.
Now press F12 repeatedly and note that the little red dot at the beginning of the
line toggles on and off, meaning that F12 is just an on-off switch for setting a
breakpoint. When the red dot is there it means that a breakpoint has been set,
which means that when the script runs it will execute the instructions in the script
until it reaches the breakpoint, and then it will stop.
Set the breakpoint to “on”, and execute the script by pressing F5. Notice that
a green arrow appear on the line with the breakpoint. Look at the workspace
window and note that N has been given a value, but that n has not. This is because
the breakpoint stops execution just before the line on which it is set. You can also
see the value of a variable by moving the cursor over the variable in the editor
window and waiting for a tip window to pop up. Do this now for N.
The most common things to do next step through the code executing each
line in turn using the Step button on the toolbar (or more commonly just F10)
while watching what happens to your variables in the workspace window. Take a
minute now and use F10 to step through the script while watching what happens
to the variables in the workspace window. When you are done stepping, you can
let the script continue to the end by clicking “Continue” on the toolbar (or more
commonly, just use the shortcut F5). Use breakpoints and stepping to explore the
this script until you can explain to your lab partner how the for loop works and
what how the if logic command works.
When you write a new script, you should almost always step through it this
16 Chapter 3 Debugging Code
way so that you are sure that it is doing what you designed it to do. You will have
lots of chances to practice debugging this way as you work through the examples
in this book.
which will cause the script to pause for 0.2 seconds, then continue. You can ask
for a pause of any number or fractions of seconds, but if you choose a really
short pause, like 0.001 seconds, the pause will not be so quick. Its length will be
determined instead by how fast the computer can run your script.
Chapter 4
Loops and Logic
which tells Matlab to start n with a value of 1, then increment the value by 1 over
and over until it counts up to N, executing the code between for and end for each
new value of n. Here are a few examples of how the for loop can be used.
2
(4.1)
n=1 n
Create a breakpoint at the s=0 line, run the code, and then step through the first
several iterations of the for loop using F10. Look at the values of n and s in the
Workspace window and see how they change as the loop iterates. Once you are
confident you know how the loop works, press F5 to let the script finish executing.
You can also calculate the same sum using matrix operators like this
n=1:N;
sum(1./n.^2)
If your code will work equally well with either a loop or a matrix operator (like
sum) with the colon command, use the colon command whenever possible. The
17
18 Chapter 4 Loops and Logic
matrix operators are pre-compiled and usually much faster. In modern versions,
Matlab will check to see if it can automatically replace loops with precompiled
matrix commands like sum, but it can’t always tell if the replacement is proper.
for n=2:N % start the loop at n=2 because we already loaded n=1
P=P*n; % multiply by n each time, put the answer back into P
end % end of the loop
B Matlab’s factorial com- Now use Matlab’s factorial command to check that you found the right answer:
mand is a limited in that it
factorial(20)
won’t act on arrays of num-
bers the way that cos, sin,
exp etc. do. A better facto-
Recursion relations with for loops
rial command to use is the
gamma function Γ(x) which Suppose that we were analytically solving a differential equation by substituting
extends the factorial func- into it a power series of the form
tion to all complex values.
∞
It is related to the factorial
an x n
X
f (x) = (4.2)
function by Γ(N + 1) = N !, n=1
and is called using the com-
mand gamma(x). you could and that we discovered that the coefficients a n satisfy the recursion relation
also check the answer to 2n − 1
your factorial loop this way: a 1 = 1 ; a n+1 = an . (4.3)
gamma(21) 2n + 1
To use these coefficients we need to load them into an array a so that a(1) = a 1 ,
a(2) = a 2 , etc. Let’s load the array using a for loop:
Listing 4.3 (ch4ex3.m)
clear; close all;
Note that we translated the recursion relation into Matlab code just as it appeared
in the formula: a(n+1)=(2*n-1)/(2*n+1)*a(n). Then we adjusted the count-
ing in the loop to fit by starting at n = 1, which loads a(1 + 1) = a(2) and ending at
n = 19, which loads a(19 + 1) = a(20). Always make your code fit the mathematics
as closely as possible, then adjust the supporting variables and structures to fit.
This will make your code easier to read and you will make fewer mistakes.
4.2 Logic
Often we only want to do something when some condition is satisfied, so we need
logic commands. The simplest logic command is the if statement, which works
like this:
Listing 4.4 (ch4ex4.m)
clear; close all;
a=1;
b=3;
if a>0
c=1 % If a is positive set c to 1
else
c=0 %if a is 0 or negative, set c to zero
end
Study each of the commands in the code above and make sure you understand Equal ==
what they do. You can build any logical condition you want if you just know the Less than <
basic logic elements listed in Table 4.1. Greater than >
Less than or equal <=
while loops Greater than or equal >=
Not equal ∼=
There is also a useful logic command that controls loops: while. Suppose you And &
don’t know how many times you are going to have to loop to get a job done, but Or |
instead want to quit looping when some condition is met. For instance, suppose Not ∼
you want to add the reciprocals of squared integers until the term you just added
is less than 1e-10. Then you would change the loop in the 1/n 2 example to look
P
Table 4.1 Matlab’s logic elements
like this
Listing 4.5 (ch4ex5.m)
clear; close all;
This loop will continue to execute until term<1e-10. Note that unlike the for
loop, here you have to do your own counting, being careful about what value n
starts at and when it is incremented (n=n+1). It is also important to make sure
that the variable you are testing (term in this case) is loaded before the loop starts
with a value that allows the test to take place and for the loop to run (term must
pass the while test.)
Sometimes while loops are awkward to use because you can get stuck in
an infinite loop if your check condition is never false. The break command is
B If you get stuck in an infi- designed to help you here. When break is executed in a loop the script jumps to
nite loop, press Ctrl-C in just after the end at the bottom of the loop. The break command also works with
the Command Window to
for loops. Here is our sum loop rewritten with break
manually stop the program
and return control back to Listing 4.6 (ch4ex6.m)
you. clear; close all;
One of the nicest features in Matlab is its wealth of visualization tools. In this
chapter we’ll learn how to use several common plots, but there are many more
that Matlab can make for you besides these.
To make a corresponding array of y values according to the function y(x) = sin(5x) t The semicolon at the end
simply type this of the x=0:.01:10; line is
crucial, unless you want to
y=sin(5*x); watch 1001 numbers scroll
down your screen. If you
Both of these arrays are the same length, as you can check with the length make this mistake on a very
command large matrix and the screen
print is taking forever, Ctrl-
length(x)
C will rescue you.
length(y)
And what if you want to plot part of the x and y arrays? The colon and end
commands can help. Try the following code to plot the first and second half
separately:
nhalf=ceil(length(x)/2);
plot(x(1:nhalf),y(1:nhalf))
plot(x(nhalf:end),y(nhalf:end))
21
22 Chapter 5 Basic Plotting
Or, if you want to specify just the x-range or the y-range, you can use xlim:
plot(x,y)
xlim([0 10])
or ylim:
plot(x,y)
ylim([-1.3 1.3])
And if you want equally scaled axes, so that plots of circles are perfectly round
instead of elliptical, use
axis equal
Logarithmic Plots
To make log and semi-log plots use the commands semilogx, semilogy, and
loglog. They work like this:
close all;
x=0:.1:8;
y=exp(x);
semilogx(x,y);
title('semilogx')
semilogy(x,y);
title('semilogy')
loglog(x,y);
title('loglog')
The 'r-' option string tells the plot command to plot the curve in red connecting
the dots with a continuous line. Many other colors and line styles are possible,
and instead of connecting the dots you can plot symbols at the points with various
line styles between the points. For instance, if you type
plot(x,y,'g.')
you get green dots at the data points with no connecting line. To see what the
possibilities are type
help plot
To write on your plot, you can use Matlab’s text command in the format:
text(10,.5,'Hi');
24 Chapter 5 Basic Plotting
which will place the text “Hi” at position x = 10 and y = 0.5 on your plot.
You can also build labels and titles that contain numbers you have generated;
use Matlab’s sprintf command, which works just like fprintf except that it
writes into a string variable instead of to the screen. You can then use this string
variable as the argument of the commands xlabel, ylabel, and title, like this:
s=sprintf('Oscillations with k=%g',5)
title(s)
In this example we hard-coded the number 5, but you can do the same thing with
variables.
And once you have generated multiple plots, you can bring the plot windows
to the foreground on your screen either by clicking on them and moving them
around, or by using the command figure(1) to pull up figure 1, figure(2)
to pull up figure 2, etc. If you want this to happen while Matlab is executing
other code (say a long loop), you need to put in a short pause command, say
pause(0.1) to give the computer a chance to switch from executing the code to
drawing the plot.
Overlaying Plots
Often you will want to overlay two plots on the same set of axes. Here’s the first
way—just ask for multiple plots on the same plot line
plot(x,f1,'r-',x,f2,'b-')
title('First way')
Here’s the second way. After the first plot, tell Matlab to hold the plot so you can
put a second one with it
figure
plot(x,f1,'r-')
hold on
plot(x,f2,'b-')
title('Second way')
hold off
The second way is convenient if you have lots of plots to put on the same figure.
Remember to release the hold using the command hold off as shown in the
example or every subsequent plot will be on the same axis.
Subplots
It is often helpful to put multiple plots in the same figure, but on separate
axes. The command to produce plots like this is subplot, and the syntax is
subplot(rows,columns,plot number) This command splits a single figure
window into an array of subwindows, the array having rows rows and columns
columns. The last argument tells Matlab which one of the windows you are draw-
ing in, numbered from plot number 1 in the upper left corner to plot number
rows*columns in the lower right corner, just as printed English is read. See online
help for more information on subplots. For instance, to make two-row figure, do
this
subplot(2,1,1)
plot(x,f1)
subplot(2,1,2)
plot(x,f2)
Chapter 6
Grids and Plots in Multiple Dimensions
Matlab will display functions of the type F (x, y), either by making a contour
plot (like a topographic map) or by displaying the function as height above the
x y plane like a perspective drawing. You can also display functions like F(x, y),
where F is a vector-valued function, using vector field plots.
The picture should convince you that Matlab did indeed make things two-dimensional,
and that this way of plotting could be very useful. But exactly how Matlab did it is
tricky, so pay close attention.
To understand how meshgrid turns one-dimensional arrays x and y into two-
dimensional matrices X and Y, consider the following simple example. Suppose
that the arrays x and y are given by
x=[1,2,3]
y=[4,5]
27
28 Chapter 6 Grids and Plots in Multiple Dimensions
X ( j , i ) Y ( j , i ). (6.2)
X (i , j ) Y (i , j ) (6.3)
X = 2 2 Y = 4 5 (6.4)
3 3 4 5
These matrices have the indexes in the X (i , j ), Y (i , j ) order, but lose the spatial
correlation that meshgrid gives between Eq. (6.1) and Fig. 6.1.
Plots made either with surf(X,Y,F) or contour(X,Y,F) (discussed below)
will look the same with either grid. However, streamline plots require your data
to be in the format provided by meshgrid. You will need to be familiar with both
methods of creating a grid. You will have need to do it both ways, depending on
the circumstance.
If you want to manually change the viewing angle of a surface plot, click on
the circular arrow icon on the figure window, then click and move the pointer
on the graph. Try it until you get the hang of it. You can also programmatically
set the viewing angle with the view command. Here’s a piece of code that flies
around the surface plot by continually changing the viewing angles and using the
pause command; we think you’ll be impressed.
Listing 6.3 (ch6ex3.m)
clear; close all;
x=-1:.1:1;
y=0:.1:1.5;
[X,Y]=ndgrid(x,y);
F=(2-cos(pi*X)).*exp(Y);
surf(X,Y,F);
title('Surface Plot')
xlabel('x')
ylabel('y')
EL=45;
for m=1:100
AZ=30+m/100*360;
view(AZ,EL);
pause(.1); % pause units are in seconds
end
The pause command in the loop allows Matlab the time to draw the plot. If
you don’t put it in, Matlab will not pause to draw the picture each iteration. This
same trick will let you make animations of both xy and surface plots.
30 Chapter 6 Grids and Plots in Multiple Dimensions
% The big magnitude difference across the region makes most arrows too small
% to see. This can be fixed by plotting unit vectors instead
% (losing all magnitude information, but keeping direction)
B=sqrt(Bx.^2+By.^2);
Ux=Bx./B;
Uy=By./B;
figure
quiver(X,Y,Ux,Uy);
axis equal
title('B(wire): unit vectors')
% Or, you can still see qualitative size information without such a big
% variation in arrow size by having the arrow length be logarithmic.
Bmin=min(min(B));
Bmax=max(max(B));
% s is the desired ratio between the longest arrow and the shortest one
s=2; % choose an arrow length ratio
k=(Bmax/Bmin)^(1/(s-1));
logsize=log(k*B/Bmin);
Lx=Ux.*logsize;
Ly=Uy.*logsize;
6.4 Streamlines 31
figure
quiver(X,Y,Lx,Ly);
axis equal
title('B(wire): logarithmic arrows')
There may be too much detail to really see what’s going on in some field plots.
You can work around this problem by clicking on the zoom icon on the tool bar
and then using the mouse to define the region you want to look at. Clicking on
the zoom-out icon, then clicking on the figure will take you back where you came
from. Or double-click on the figure will also take you back.
6.4 Streamlines
In addition to plotting little arrows at each point in the vector field, you can plot
“streamlines.” For fluid dynamics, streamlines show the path that a particle would
follow if the arrows at each point represent the fluid velocity at that point. In
electricity and magnetism, flow lines for the electric and magnetic fields are the
field lines that you learned about in your introductory electricity and magnetism
course.
As mentioned above, the streamline plotting routine assumes that the grid
data was created in the meshgrid format rather than the ndgrid format.
Listing 6.5 (ch6ex5.m)
clear;close
%Plot streamlines that start at different points along the line y=1.
startx = 0.1:0.1:1;
starty = ones(size(startx));
streamline(x,y,u,v,startx,starty);
Chapter 7
Make Your Own Functions
You will often need to build your own Matlab functions as you use Matlab to
solve problems. You can do this either by putting simple expressions into your
code by using Matlab’s anonymous function syntax, or by defining function files
with .m extensions called M-file functions.
x=-8:.1:8;
y=x;
plot(x,f(x,2))
[X,Y]=ndgrid(x,y);
figure
surf(X,Y,f(X,Y))
The second line in this listing creates a function f that is stored only in memory.
The symbol @ tells Matlab that the variable f contains a reference to a function
rather than a numeric value, and the items in parentheses afterwards indicate that
this function takes two arguments: x and y. The code sin(x.*y)./(x.^2+y.^2)
defines how the input values are used to create output values.
Anonymous functions are convenient in many cases, but to use them you
must be able to define your function in a single statement of Matlab code. Often
this is not possible because your functions will require logic or loops. In these
cases, you’ll need to use the more flexible m-file functions.
33
34 Chapter 7 Make Your Own Functions
f=sin(x.*y)./(x.^2+y.^2);
The word function is required, output is the name of the variable that the
function passes back to whomever called it, name should match the filename of
the script (e.g. “trig.m” above), and input is the argument list of the function.
When the function is called, the arguments passed in must match in number and
type defined in the definition. The m-file function must assign the output an
appropriate value before finishing.
To call the function, you to write a separate script like this
Listing 7.3 (calling.m)
clear;close all;
h=0.1;
x=-8:h:8;
y=x;
plot(x,trig(x,2))
[X,Y]=ndgrid(x,y);
figure
surf(X,Y,trig(X,Y))
The names of the input and output variables of a function are local to the
function, so you don’t have to worry about overwriting variables in the file that
called the function. However, this also means that the variables inside Matlab
functions are invisible in the command window or the calling m-file. For example,
you cannot reference the variable f in the calling.m script, nor can you access the
variable h in the trig.m script.
If you want variables used outside the function to be visible inside the function
and vice-versa, use Matlab’s global command. This command declares certain
variables to be visible in all Matlab routines in which the global command appears.
For instance, if you put the command
global a b c;
7.3 Functions With Multiple Outputs 35
both in a script that calls trig.m and in trig.m itself, then if you give a, b, and
c values in the main script, they will also have these values inside trig.m. This
construction will be especially useful when we use Matlab’s differential equation
solving routines in Chapter 9.
global hbar m
Note that when a function returns more than one output variable, the names
of these results are put in square brackets, as in SquareWell.m. When you call
the function, you use the same type of format to receive the output, as in this
example
Listing 7.5 (ch7ex5.m)
clear; close all;
global hbar m
36 Chapter 7 Make Your Own Functions
Note that we didn’t have to call the variables the same names when we used them
outside the function in the main script (e.g. we used Energy instead of E). This
is because all variables inside functions are local to these programs and Matlab
doesn’t even know about them in the command window. Confirm this by trying
to display the value of E in the command window.
E
However, note that we did declare the variables hbar and m as global variables so
that the values that we set in our calling script are available inside the function
also.
Chapter 8
Derivatives and Integrals
In numerical physics we represent functions like f (x) as discrete points on
a grid. If you are careful, you can use these discrete values to quickly give you
Rb
numerical approximations to the derivative f 0 (x) and the integral a f (x)d x.
8.1 Derivatives
The instructor of your first calculus class probably introduced the derivative with
a formula like this:
df f (x + h) − f (x)
= lim . (8.1)
d x h→0 h
To do a derivative numerically on a grid, we use the following slightly different,
but numerically more accurate, form:
df f (x + h) − f (x − h)
= lim . (8.2)
d x h→0 2h
It’s more accurate because it’s centered about the value of x where we want the
derivative to be evaluated.
To see the importance of centering, consider Fig. 8.1. In this figure we are
trying to find the slope of the tangent line at x = 0.4. The usual calculus-book
formula uses the data points at x = 0.4 and x = 0.5, giving tangent line a. It should
be obvious that using the “centered” pair of points x = 0.3 and x = 0.5 to obtain
tangent line b is a much better approximation.
As an example of what a good job centering does, try differentiating sin x this
way:
dfdx=(sin(1+1e-5)-sin(1-1e-5))/2e-5
Figure 8.1 The centered derivative
Now take the ratio between the numerical derivative and the exact answer cos(1)
approximation works best.
to see how well this does
format long e dfdx/cos(1)
You can also take the second derivative numerically using the formula
d2 f f (x + h) − 2 f (x) + f (x − h)
2
= lim . (8.3)
dx h→0 h2
For example,
d2fdx2=(sin(1+1e-4)-2*sin(1)+sin(1-1e-4))/1e-8
Again, we take the ratio between the numerical derivative and the exact answer
− sin(1) to see how well this does
37
38 Chapter 8 Derivatives and Integrals
You may be wondering how to choose the step size h. This is a little compli-
cated; take a course on numerical analysis and you can see how it’s done. But
until you do, here’s a rough rule of thumb. If f (x) changes significantly over an
interval in x of about L, approximate the first derivative of f (x) using h = 10−5 L;
to approximate the second derivative use h = 10−4 L.
If you want to differentiate a function defined by arrays x and f , then the step
size is already determined; you just have to live with the accuracy obtained by
using h = ∆x, where ∆x is the spacing between points in the x array. Notice that
the data must be evenly spaced for the example we are going to give you to work.
The idea is to approximate the derivative at x = x j in the array by using the
function values f j +1 and f j −1 like this
f j +1 − f j −1
f 0 (x j ) ≈ . (8.4)
2h
This works fine for an N element array at all points from x 2 to x N −1 , but it doesn’t
work at the endpoints because you can’t reach beyond the ends of the array to
find the needed values of f . So we use this formula for x 2 through x N −1 , then use
linear extrapolation to find the derivatives at the endpoints, like this
Listing 8.1 (ch8ex1.m)
clear; close all;
dfdx(2:N-1)=(f(3:N)-f(1:N-2))/(2*dx);
% linear
%yp(1)=2*yp(2)-yp(3);yp(N)=2*yp(N-1)-yp(N-2);
%ypp(1)=2*ypp(2)-ypp(3);ypp(N)=2*ypp(N-1)-ypp(N-2);
% quadratic
yp(1)=3*yp(2)-3*yp(3)+yp(4); yp(N)=3*yp(N-1)-3*yp(N-2)+yp(N-3);
ypp(1)=3*ypp(2)-3*ypp(3)+ypp(4); ypp(N)=3*ypp(N-1)-3*ypp(N-2)+ypp(N-3);
To see how to call this function, you can use the following script
Listing 8.3 (ch8ex3.m)
clear; close all;
Matlab also has its own routines for doing derivatives; look in online help for
diff and gradient.
8.2 Integrals
Definite Integrals
There are many ways to do definite integrals numerically, and the more accurate
these methods are the more complicated they become. But for everyday use the
midpoint method usually works just fine, and it’s very easy to code. The idea of
Rb
the midpoint method is to approximate the integral a f (x)d x by subdividing
40 Chapter 8 Derivatives and Integrals
the interval [a, b] into N subintervals of width h = (b − a)/N and then evaluating
f (x) at the center of each subinterval. We replace f (x)d x by f (x j )h and sum over
all the subintervals to obtain an approximate integral. This method is shown in
Fig. 8.2. Notice that this method should work pretty well over subintervals like
[1.0,1.5] where f (x) is nearly a straight line, but probably is lousy over subintervals
like [0.5,1.0] where the function curves.
Listing 8.4 (ch8ex4.m)
clear; close all;
Figure 8.2 The midpoint rule % compare with the exact answer, which is sin(5)
works OK if the function is nearly a err=s-sin(5)
straight line across each interval.
If you need to do a definite integral in Matlab, this is an easy way to do it. And
to see how accurate your answer is, do it with 1000 points, then 2000, then 4000,
etc., and watch which decimal points are changing as you go to higher accuracy.
Indefinite integrals
And what if you need to find the indefinite integral? If you have arrays of (x, f (x)),
Rx
you can quickly approximate the indefinite integral function a f (x 0 )d x 0 using
Matlab’s cumtrapz functions. This function takes an array of function values in
y and an
Rx
x-spacing dx and returns an approximate indefinite integral function
g (x) = a y(x 0 )d x 0 using the trapezoid rule. This rule says to use as the height of
the rectangle on the interval of width h the average of the function values on the
edges of the interval:
Z x+h
y(x) + y(x + h)
y(x 0 )d x 0 ≈ h (8.5)
x 2
Because cumtrapz uses the trapezoid rule instead of the midpoint rule, the array
of function values must start at x = a and be defined at the edges of the subin-
tervals of size h rather than at the centers. Once you have your function values
stored in an array, say f, you calculate the indefinite integral like this:
g=cumtrapz(f)*dx
g(1)=0;
N=length(y);
for n=2:N
% Trapezoid rule
g(n)=g(n-1)+(y(n-1)+y(n))*.5*dx;
end
function in their arguments (like fzero, fsolve, and fminsearch did) and adjust
the grid step size to optimize accuracy.
The Matlab routine integral adaptively approximates the function with
parabolas (as shown in Fig. 8.3) or other functions instead of the rectangles of the
midpoint method. The parabolic method is called Simpson’s Rule. As you can see
from Fig. 8.3, parabolas do a much better job, making quad a standard Matlab
choice for integration. To use the integral command, you need to define your
function using an anonymous function. For example, to define an anonymous
function to represent the function f (x) = cos(x)e −x , you use this syntax:
f=@(x) exp(-x).*cos(x)|
After you have defined f this way, you can use it just like built-in Matlab functions
like sin and cos. For instance, try these commands after defining f as above:
f(1)
f(1:10)
Using the anonymous function syntax, we can use integral to integrate cos(x)e −x
from 0 to 2 like this:
Listing 8.6 (ch8ex6.m)
clear; close all;
f=@(x) exp(-x).*cos(x)
integral(f,0,2,'AbsTol',1e-8)
Matlab also has a command integrate2 that does double integrals. Here’s
how to use it to integrate the function f (x, y) = cos(x y).
Figure 8.3 Fitting parabolas (Simp-
son’s Rule) works better. Listing 8.7 (f2int.m)
clear; close all;
f = @(x,y) cos(x.*y);
integral2(f,0,2,0,2,'AbsTol',1e-10)
Chapter 9
Ordinary Differential Equations
Matlab provides some powerful numerical solvers and gives you a lot of
control over how they work. It is often more efficient to use Matlab for hard
differential equations than to use Mathematica. In this chapter we review the
methods used by numerical differential equation solvers and write a couple of
crude solvers to see how they work. Then we introduce you to the solvers that
Matlab provides.
N (t ) = N (0)e −γt .
In this case u is the one-element vector with u 1 = N and F is the one element
vector F(u) = −γu 1
43
44 Chapter 9 Ordinary Differential Equations
This is a second order differential equation rather than a first order system, so we
need to change its form to fit Matlab’s format. This is done by using position x(t )
and velocity v(t ) = d x/d t as two unknown functions of time. The first order set
consists of the definition of v(t ) in terms of x(t ) and the second order differential
equation with d 2 x/d t 2 replaced by d v/d t :
dx
= v
dt
dv
= −ω20 x . (9.6)
dt
It is always possible to use this trick of defining new functions in terms of deriva-
tives of other functions to convert a high order differential equation to a first order
set.
In this case, the vector u from Eq. (9.1) is
µ ¶
x
u= . (9.7)
v
In this notation, our system of equations becomes
d u1
= u2
dt (9.8)
d u2
= −ω20 u 1
dt
So the vector F(u) is µ ¶
u2
F(u) = (9.9)
−ω20 u 1
Euler’s Method
The first method is called Euler’s Method (say “Oiler’s Method”), and even though
it’s pretty bad, it is the basis for many better methods. Here’s the idea.
First, quit thinking about time as a continuously flowing quantity. Instead we
will seek the solution at specific times t n separated by small time steps τ. Hence,
instead of u(t ) we will try to find un = u(t n ). The hope is that as we make τ smaller
and smaller we will come closer and closer to the true solution.
Since we are going to use discrete times and since the initial conditions tell us
where to start, what we need is a rule that tells us how to advance from un to un+1 .
To find this rule let’s approximate the differential equation d u/d t = F this way
un+1 − un
= F(un , t n ) . (9.10)
τ
In doing this we are assuming that our solution is represented as an array of values
of both t and u, which is the best that Matlab can do. If we already know un , the
solution at the present time t n , then the equation above can give us u one time
step into the future at time t n+1 = t n + τ:
When you run this code you will see that even if you take 1000 steps, the solution
is not very good. No matter how small tau is, if you run long enough Euler’s
method will blow up.
Also note that if you try to run this script for many steps (N = 50, 000, for
instance) it runs slow. The reason is that you keep making the t , x, and v arrays
longer and longer in the loop, so Matlab has to allocate additional memory for
them in each step. But if you define them ahead of time to be big enough (see the
commented line just after the line N=input... in the code above), the arrays are
defined to be big enough before you start the loop and no time will be wasted
increasing the array sizes. Run this script again with the line of code beginning
with t=zeros(1,N+1)... uncommented and watch how fast it runs, even if you
choose N = 500, 000.
Second-order Runge-Kutta
Here is a method which is still quite simple, but works a lot better than Euler.
But it is, in fact, just a modification of Euler. If you go back and look at how we
approximated d u/d t in Euler’s method you can see one thing that’s wrong with it:
the derivative is not centered in time:
un+1 − un
= F(un , t n ) . (9.12)
τ
The left side of this equation is a good approximation to the derivative halfway
between t n and t n+1 , but the right side is evaluated at t n . This mismatch is one
reason why Euler is so bad.
Runge-Kutta attempts to solve this centering problem by what looks like a
cheat: (1) Do an Euler step, but only by τ/2 so that we have an approximation
to [x,v] at t n+1/2 . These half-step predictions will be called [xhalf,vhalf].
(2) Then evaluate the function F(u, t ) at these predicted values to center the
derivative
un+1 − un
= F(un+1/2 , t n+1/2 ) . (9.13)
τ
9.3 Matlab’s Differential Equation Solvers 47
% Corrector step
x(n+1)=x(n) + vhalf*tau;
v(n+1)=v(n) - w^2*xhalf*tau;
end
plot(t,x,'r-',t,cos(w*t),'b-')
48 Chapter 9 Ordinary Differential Equations
% do the solve
[t,u]=ode45(@rhs,[tstart,tfinal],u0,options);
% with zeros
F=zeros(length(u),1);
You can write the rhs function more compactly using anonymous functions.
For the example above, you could do this as
rhs = @(t,u)[u(2);-w0^2*u(1)];
[t,u] = ode45(rhs,[tstart,tfinal],u0,options);
rather than writing a separate m-file function. The anonymous function method
has the feature that there are no global variables to cause interesting debugging
problems. It is also much more compact. But for more complicated systems of
differential equations, it can become hard to read the code.
n1=0;n2=0;
for m=1:length(ie)
if ie(m)==1
n1=n1+1;
% load event 1: x,v,t
x1(n1)=ue(m,1);v1(n1)=ue(m,2);t1(n1)=te(m);
end
% plot the x=0 crossings with red asterisks and the v=0
% crossings with blue asterisks
52 Chapter 9 Ordinary Differential Equations
plot(t1,x1,'r*')
plot(t2,x2,'b*')
hold off
rhs(1,1)=u(2);
rhs(2,1)=-omega^2*u(1);
(y 2 − y 1 )
y = y1 + (x − x 1 ) (10.1)
(x 2 − x 1 ) Figure 10.1 Linear interpolation
only works well over intervals
This formula can be used between any two data points to linearly interpolate. For
where the function is straight.
example, if x in this formula is half-way between x 1 and x 2 at x = (x 1 + x 2 )/2 then
it is easy to show that linear interpolation gives the obvious result y = (y 1 + y 2 )/2.
But you must be careful when using this method that your points are close
enough together to give good values. In Fig. 10.1, for instance, the linear approxi-
mation to the curved function represented by the dashed line “a” is pretty poor
because the points x = 0 and x = 1 on which this line is based are just too far apart.
Adding a point in between at x = 0.5 gets us the two-segment approximation “c”
which is quite a bit better. Notice also that line “b” is a pretty good approximation
because the function doesn’t curve much.
This linear formula can also be used to extrapolate. A common way extrapola-
tion is often used is to find just one more function value beyond the end of a set
of function pairs equally spaced in x. If the last two function values in the array
are f N −1 and f N , it is easy to show that the formula above gives the simple rule
f N +1 = 2 f N − f N −1 (10.2)
You must be careful here as well: segment “d” in Fig. 10.1 is the linear extrapo-
lation of segment “b”, but because the function starts to curve again “d” is a lousy
approximation unless x is quite close to x = 2.
55
56 Chapter 10 Interpolation and Extrapolation
Quadratic approximation
Quadratic interpolation and extrapolation are more accurate than linear because
the quadratic polynomial ax 2 + bx + c can more easily fit curved functions than
the linear polynomial ax + b. Consider Fig. 10.2. It shows two quadratic fits to
the curved function. The one marked “a” just uses the points x = 0, 1, 2 and is not
very accurate because these points are too far apart. But the approximation using
x = 0, 0.5, 1, marked “b”, is really quite good, much better than a two-segment
linear fit using the same three points would be.
To derive the quadratic interpolation and extrapolation function, we assume
that we have three known points, (x 1 , y 1 ), (x 2 , y 2 ), and (x 3 , y 3 ). If our parabola
y = ax 2 + bx + c is to pass through these three points, then the following set of
equations must hold
y 1 = ax 12 + bx 1 + c
y 2 = ax 22 + bx 2 + c (10.3)
y 3 = ax 32 + bx 3 + c
Unfortunately, when you solve this set of equations for a, b, and c, the formulas
Figure 10.2 Quadratic interpola- are ugly. If we simplify to the case where the three points are part of an equally
tion follows the curves better if the
spaced grid, things are prettier. Let’s assume equally spaced points spaced by h,
curvature doesn’t change sign.
so that x 1 = x 2 − h and x 3 = x 2 + h. In this case, the solutions are1
y 1 − 2y 2 + y 3
a=
2h 2
y3 − y1
b= − 2x 2 a (10.4)
2h
y1 − y3
c = y 2 + x2 + x 22 a
2h
With these coefficients, we can quickly find approximate y values near our
three points using y = ax 2 +bx +c. This formula is very useful for getting function
values that aren’t in the array. For instance, we can use this formula to obtain the
interpolation approximation for a point half way between two known points, i.e.
y n+1/2 ≡ y(x n + h/2)
1 3 3
y n+1/2 = − y n−1 + y n + y n+1 (10.5)
8 4 8
1 It is common in numerical analysis to derive this result using Taylor’s theorem, which approxi-
1 00
y(x) ≈ y(a) + y 0 (a)(x − a) + y (a)(x − a)2 + · · ·
2
If we ignore all terms beyond the quadratic term in (x − a)) near a point (x n , y n ), use an array of
equally spaced x values, and employ numerical derivatives as discussed in Chapter 8, the Taylor’s
series becomes
y n+1 − y n−1 y n−1 − 2y n + y n+1
y(x) ≈ y n + (x − x n ) + (x − x n )2 .
2h 2h 2
This can be solved to find a, b, and c.
10.2 Matlab interpolaters 57
and also to find the quadratic extrapolation rule for a data point one grid spacing
beyond the last point, i.e. y N +1 ≡ y(x N + h)
y N +1 = 3y N − 3y N −1 + y N −2 . (10.6)
% linear interpolation
yi=interp1(x,y,xi,'linear');
% cubic interpolation
yi=interp1(x,y,xi,'pchip');
title('Cubic Interpolation')
% spline interpolation
yi=interp1(x,y,xi,'spline');
x=-3:.4:3; y=x;
% build the full 2-d grid for the crude x and y data
% and make a surface plot
[X,Y]=ndgrid(x,y);
Z=cos((X.^2+Y.^2)/2);
surf(X,Y,Z);
title('Crude Data')
ZF=interpn(X,Y,Z,XF,YF,'cubic');
figure
surf(XF,YF,ZF);
title('Cubic Interpolation')
ZF=interpn(X,Y,Z,XF,YF,'spline');
figure
surf(XF,YF,ZF);
title('Spline Interpolation')
In this example our grids were created using ndgrid. If you choose to use
the meshgrid command to create your grids, you’ll need to use the command
interp2 instead of interpn.
Chapter 11
Linear Algebra and Polynomials
Since Matlab is convinced that every variable in the world is a matrix, you
won’t be surprised that it has about every matrix function you can imagine. Any-
thing you learned about in your linear algebra class Matlab has a command to do.
Here is a brief summary of the most useful ones for physics.
61
62 Chapter 11 Linear Algebra and Polynomials
To find the Hermitian conjugate of the matrix A (transpose of A with all elements
replaced with their complex conjugates) type
A'
(notice that there isn’t a period). If your matrices are real, then there is no differ-
ence between these two commands and you might as well just use A'. Notice that
if a is a row vector then a' is a column vector. You will use the transpose operator
to switch between row and column vectors a lot in Matlab, like this
[1,2,3]
[1,2,3]'
[4;5;6]
[4;5;6]'
Flipping Matrices
Sometimes you want to flip a matrix along the horizontal or vertical directions.
The command to do this are
fliplr(A) % flip A, left column becomes right, etc.
and
flipud(A) % flip A, top row becomes bottom, etc.
Determinant
Find the determinant of a square matrix this way
det(A)
To build a matrix V whose columns are the eigenvectors of the matrix A and
another matrix D whose diagonal elements are the eigenvalues corresponding to
the eigenvectors in V use
[V,D]=eig(A)
To select the 3rd eigenvector and load it into a column vector use
v3=V(:,3) % i.e., select all of the rows (:) in column 3
11.3 Vector Operations 63
Fancy Stuff
Matlab also knows how to do singular value decomposition, QR factorization, LU
factorization, and conversion to reduced row-echelon form. And the commands
rcond and cond will give you the condition number of a matrix. To learn about
these ideas, consult a textbook on linear algebra. To learn how they are used in
Matlab use the commands;
help svd
help QR
help LU
help rref
help rcond
help cond
Special Matrices
Matlab will let you load several special matrices. A few of the more useful ones
are the identity matrix
I=eye(4,4) % load I with the 4x4 identity matrix. The
% programmer who invented this syntax must
% have been drunk
a=[1,2,3];
b=[3,2,1];
dot(a,b)
cross(a,b)
Cross products only work for three-dimensional vectors, but dot products can be
used with vectors of any length. Note that the dot function is not the same thing
as the “dot times” operator (.*). Type
dot(a,b)
a.*b
and compare the output. Explain the difference to someone sitting nearby.
11.4 Polynomials
Polynomials are used so commonly in computation that Matlab has special com-
mands to deal with them. The polynomial x 4 +2x 3 −13x 2 −14x +24 is represented
in Matlab by the array [1,2,-13,-14,24], i.e., by the coefficients of the polyno-
mial starting with the highest power and ending with the constant term. If any
power is missing from the polynomial its coefficient must appear in the array as a
zero. Here are some of the things Matlab can do with polynomials.
Roots of a Polynomial
The following command will find the roots of a polynomial:
p=[1,2,-13,-14,24];
r=roots(p)
Multiply Polynomials
The command conv returns the coefficient array of the product of two polynomi-
als.
a=[1,0,1];
b=[1,0,-1];
c=conv(a,b)
Divide Polynomials
Remember synthetic division? Matlab can do it with the command deconv, giving
you the quotient and the remainder.
a=[1,1,1]; % a=x^2+x+1
b=[1,1]; % b=x+1
After you do this Matlab will give you q=[1,0] and r=[0,0,1]. This means that
q = x + 0 = x and r = 0x 2 + 0x + 1 = 1, so
x2 + x + 1 1
=x+ . (11.2)
x +1 x +1
First Derivative
Matlab can take a polynomial array and return the polynomial array of its deriva-
tive:
a=[1,1,1,1]
ap=polyder(a)
Evaluate a Polynomial
If you have an array of x-values and you want to evaluate a polynomial at each
one, do this:
% define the polynomial
a=[1,2,-13,-14,24];
% plot it
plot(x,y)
Chapter 12
Fitting Functions to Data
A common problem that physicists encounter is to find the best fit of a func-
tion (with a few variable parameters) to a set of data points. If you are fitting to a
polynomial, then the easiest way to do this is with polyfit. If you want to fit to
an arbitrary functions containing sines, cosines, exponentials, logs, etc., then the
process is a little more complicated. Pay attention to this section; it is useful.
x=linspace(0,pi,50);
67
68 Chapter 12 Fitting Functions to Data
% make the crude data set with dx too big for good accuracy
dx=pi/5;
x=0:dx:2*pi;
y=sin(x);
% display the fit, the data, and the exact sine function
plot(x,y,'b*',xi,yi,'r-',xi,sin(xi),'c-')
legend('Data','Fit','Exact sine function')
f (x, a 1 , a 2 ) = a 1 e a2 x . (12.1)
The first step in the fitting process is to make a m-file function, call it funcfit.m,
that evaluates the function you want to fit to, like this
Listing 12.3 (funcfit.m)
function f=funcfit(a,x)
% this function evaluates the fitting
% function f(x,a1,a2,a3,...) to be fit to
% data. It is called by leastsq.
We need to make another Matlab M-file called leastsq.m which evaluates the
least-squares sum you are trying to minimize. It needs access to your fitting
function f (x, a), which you stored in the Matlab M-file funcfit.m above. Here is
the form of the leastsq.m function.
Listing 12.4 (leastsq.m)
function s=leastsq(a,x,y)
s=sum((y-funcfit(a,x)).^2);
With these two functions built and sitting in your Matlab directory we are ready
to do the fit.
Matlab has a nice multidimensional minimizer routine called fminsearch
that will do fits to a general function if you give it a half-decent initial guess for the
fitting parameters. The basic idea is that you pass a reference to your leastsq.m
function to fminsearch, and it varies the fit parameters in the variable a in a
systematic way to find the values that minimizes the error function S (calculated
by leastsq.m from the (x, y) data and the a n ’s).
Note, however, that fminsearch is a minimizer, not a zero finder. So it may
find a local minimum of the error function which is not a good fit. If it fails in
this way you need to make another initial guess so fminsearch can take another
crack at the problem.
70 Chapter 12 Fitting Functions to Data
Here is a piece of code that performs the fitting functions. First, it loads the
data from a file. For this to work, the data needs to be sitting in the file data.fil
as two columns of (x, y) pairs, like this
0.0 1.10
0.2 1.20
0.4 1.52
0.6 1.84
0.8 2.20
1.0 2.70
Then the program asks you to enter an initial guess for the fitting parameters, plot
the initial guess against the data, then tell fminsearch to do the least squares fit.
The behavior of fminsearch can be controlled by setting options with Matlab’s
optimset command. In the code below this command is used to set the Matlab
variable TolX, which tells fminsearch to keep refining the parameter search until
the parameters are determined to a relative accuracy of TolX. Finally, it plots the
best fit against the data. We suggest you save it for future use.
Listing 12.5 (datafit.m)
clear;close
% Uses fminsearch to least squares fit a function defined
% in funcfit.m to data read in from data.fil
plot(x,y,'b*',xplot,yplot,'r-')
xlabel('x')
ylabel('y')
title('Initial Guess and Data')
end
% Do the fit with the option TolX set; fminsearch will adjust
% a until each of its elements is determined to within TolX.
% If you think fminsearch could do better, reduce TolX.
option=optimset('TolX',1e-5);
It’s a little more work to make three files to get this job done, but we suggest
you learn how to use fminsearch this way. Function fitting comes up all the time.
Once you get the hang of it, you can choose to fit to any function you like just by
changing the definition in funcfit.m. The other two scripts usually don’t need
to be modified.
Chapter 13
Fast Fourier Transform (FFT)
In physics, we often need to see what frequency components comprise a
signal. The mathematical method for finding the spectrum of a signal f (t ) is the
Fourier transform, given by the integral
Z ∞
1
g (ω) = p f (t )e i ωt d t (13.1)
2π −∞
If you look at the array g you will find that it is full of complex numbers. They are
complex because they store the phase relationship between frequency compo-
nents as well as amplitude information, just like the Fourier transform. When we
don’t care about the phase information contained in g (ω), we can work instead
with the power spectrum P (ω) = |g (ω)|2 , obtained this way:
P=abs(g).^2
The fft routing runs fastest if you give it data sets with 64, 128, 1024, 16384, etc.
(powers of 2) data points in them. Use help fft to see how to give fft a second
argument so powers of 2 are always used.
To plot P or g vs. frequency, we need to associate a frequency with each
element of the array, just like we had to associate a time with each element of f to
plot f (t ). Later we’ll show you how to derive the values for the frequency array
that corresponds to g. For now we’ll just tell you that the frequency interval from
73
74 Chapter 13 Fast Fourier Transform (FFT)
one point in g to the next is related to the time step τ from one point in f to the
next via
∆ν = 1/(N τ) or ∆ω = 2π/(N τ) (13.2)
The “regular” frequency ν is measured in Hz, or cycles/second, and angular
frequency ω = 2πν is measured in radians/second. The lowest frequency is 0 and
the highest frequency in the array is
The frequency array ν (in cycles per second) and the ω array (in radians per
second) would be built this way:
N=length(f);
dv=1/(N*tau);
v=0:dv:1/tau-dv; % (regular frequency, cycles/sec)
dw=2*pi/(N*tau);
w=0:dw:2*pi/tau-dw; % (angular frequency, radians/sec)
Both flavors of frequency are commonly used, and you should make sure that you
clearly understand which one you are using in a given problem.
Here is an example to show how this process works.
Listing 13.1 (ch13ex1.m)
clear; close all;
figure
plot(w,P)
xlabel('\omega')
ylabel('P(\omega)')
title('Power Spectrum, including aliased points')
13.2 Aliasing and the Critical Frequency 75
The power spectrum produced by Listing 13.1 is plotted in Fig. 13.1. Note that
it has peaks at ω = 1, 3, 3.5, 4, 6 as we would expect, but there are some extra peaks
on the right side. These extra peaks are due to a phenomenon called aliasing.
ω0 = θ0 /τ
ω1 = θ1 /τ = ω0 + 2π/τ,
ω−1 = θ−1 /τ = ω0 − 2π/τ. (13.4)
The general expression for all frequencies that are consistent with the wheel Figure 13.3 Even with one spoke,
orientation at the two times is the ambiguity remains. In this fig-
ure, we show three of the possible
ωn = ω0 + n2π/τ. (integer n) (13.5) rotation angles between frames.
76 Chapter 13 Fast Fourier Transform (FFT)
Figure 13.5 Plot of the power spectrum from Listing 13.1 showing the negative frequen-
cies that are aliased as positive frequencies.
signals (i.e. cos(−ωt ) = cos(ωt )), but has a π phase shift for antisymmetric signals (i.e. sin(−ωt ) =
− sin(ωt )). You can just think of wagon wheels rotating forward or backward in time.
13.3 Windowing 77
and you will be unable to distinguish between actual and aliased frequency peaks.
For example, if we increase τ by using τ = 22, 000/N while keeping N = 214 in
our example code, the aliased peaks overlap the real peaks, as shown in Fig. 13.6. Power Spectrum, including aliased points
In this case it is impossible to tell which peaks are real and which are aliased
throughout the whole range of ω.
Notice from the definition (13.2) that the frequency step size ∆ω is controlled
by t final = N τ. Thus, your minimum spectral resolution is inversely proportional
to the amount of time that you record data. If you want to distinguish between
two frequencies ω1 and ω2 in a spectrum, then you must take data long enough so
that ∆ω ¿ |ω2 − ω1 |. Since the time step τ often needs to be tiny (so that ωc is big
enough), and the total data taking time t final often needs to be long (so that ∆ω is
small enough) you usually need lots and lots of points. So you need to design your
data-taking carefully to capture the features you want to see without requiring
Figure 13.6 The fft of the same
more data than your computer can hold. signal as Fig. 13.5 sampled with
a slower rate (τ is about 4 times
bigger) for the same amount of
13.3 Windowing time. The “real” signal peaks are
at ω = 1, 3, 3.5, 4, 6; the rest of the
The relative peak heights in Fig. 13.5 are similar to what they should be, but zoom peaks are aliased negative frequen-
in closely on the normalized power spectrum and you will see that they are not cies.
exactly the right relative heights—power is proportional to amplitude squared,
so the peaks should be in the ratio [1,0.25,0.16,0.49,0.04]. To understand why
the relative sizes are off, let’s take the Fourier transform of one of the frequency
components in our signal analytically:
π
Z ∞ r
1 i ωt
F [cos(ω0 t )] = p cos(ω0 t )e d t = (δ(ω + ω0 ) + δ(ω − ω0 )) . (13.7)
2π −∞ 2
Yes, those are delta-functions located at ω = ±ω0 , and they are infinite (but they
have finite area.) So when Matlab does the fft on periodic data, the result
is a bunch of approximate delta functions with very narrow widths and large
amplitudes. However, since our frequency array doesn’t have, for example, a point
exactly at ω = 3 where our signal should have a delta function, the heights of the
approximate delta function peaks are not correct. The solution to this amplitude
problem relates to a concept called windowing.
When we numerically sample a waveform, there is always an implied “square
window” around the data: the signal is zero before you start sampling, and im-
mediately zero again after you stop. The square window artificially confines the
signal in time. The uncertainty principle states that if we confine a signal to a
short time, its frequency peaks will be broader. However, in our example we are
broadening delta functions (infinitely narrow), and even the broadening due to
the square window is not enough to resolve the peak.
The solution is to further narrow the time signal in a controlled fashion by
multiplying it by a bell-shaped curve called a windowing function.2 This narrow-
ing in time further broadens the frequency peaks, and with broader peaks the
2 You may be wondering why we don’t just use a shorter time window instead of multiplying
78 Chapter 13 Fast Fourier Transform (FFT)
height isn’t as sensitive to where your data points fall in relation to the center
of the peaks. However, if your windowing function is too narrow in time, your
frequency peaks can overlap and your spectral resolution will be compromised (a
phenomenon called leakage).
There are many types of windowing functions. See Matlab help on the window
command for a list of ones that Matlab has built in.
However, these definitions of the Fourier transform are not universally used. For
instance, you can put a factor of 1/2π on one transform rather than a factor of
p
1/ 2π on both.3 Also, it is arbitrary which equation is called the transform and
which is the inverse transform—i.e., you can switch the minus signs in the expo-
nents. We prefer the convention shown, because the inverse transform can then
be used to cleanly represent a sum of traveling waves of the form e i (kx−ωt ) . The
other sign convention is also mathematically permissible, and often used, espe-
cially in engineering and acoustics. You should make sure you clearly understand
the conventions you are using, so you don’t have factors of 2π floating around or
time running backward in your models!
The formula Matlab calculates in the fft command is the sum
NX
−1
g (ωk+1 ) = f (t j +1 )e −i 2π j k/N , (k = 0, 1, 2, ..N − 1) (13.10)
j =0
by a windowing function. Well, you can, but then you reduce your resolution ∆ω which is usually
undesirable.
p
3 Physicists usually use the 1/ 2π form because it makes an energy conservation theorem
1 NX
−1
f (t j +1 ) = g (ωk+1 )e i 2π j k/N , ( j = 0, 1, 2, ..N − 1) (13.11)
N k=0
1. The fft defined in Eq. (13.10) is a sum with no normalization, so the height
of your peaks scales with N , the number of points you sample. Thus, sam-
pling the same signal with a different number of points will change the
height of the result.
2. The fft has a negative exponent and (in our convention) the Fourier trans-
form has a positive exponent. Thus, the ifft is closer to what we would
call the Fourier transform than the fft.
f = length(St)*fftshift(ifft(ifftshift(St)))*dt/sqrt(2*pi);
return
The fftshift function handles the requirement to put the negative frequencies
back where they belong. The “physicist’s inverse Fourier transform,” i.e. Eq. (13.9)
is then
Listing 13.3 (ift.m)
80 Chapter 13 Fast Fourier Transform (FFT)
f = fftshift(fft(ifftshift(Sw)))*dw/sqrt(2*pi);
return
or this if you absolutely must use an odd N (puts ω = 0 in the right place)
w=-((N-1)/2)*dw:dw:dw*((N-1)/2);
To illustrate how to use these functions, let’s use them to analyze the same
signal as in Example 13.2a
Listing 13.4 (ch13ex4.m)
clear; close all;
% build a time series made up of 5 different frequencies
% then use ft.m to display the spectrum
N=2^14;
tau=6000/N;
t=0:tau:(N-1)*tau;
figure
plot(w,P)
xlabel('\omega')
13.4 Using the FFT to Compute Fourier Transforms 81
ylabel('P(\omega)')
title('Power Spectrum with peaks at all the right frequencies')
Run the example and note that we now have frequency peaks at all the right
frequencies. Also vary N and note that the peak heights don’t scale with N any
more. The amplitude of peaks in a Fourier transform still tends to be large,
however, because instead of amplitude, it is amplitude density (amplitude per
unit frequency, or amplitude squared per unit frequency in the case of a power
spectrum). So if the signal is confined to a tiny range in ω, its density will be huge.
Chapter 14
Solving Nonlinear Equations
You will sometimes need to solve difficult equations of the form f (x) = 0 where
f (x) is a complicated, nonlinear expression. Other times you will need to solve
complicated systems of the form f (x, y, z) = 0, g (x, y, z) = 0, and h(x, y, z) = 0,
where f , g , and h are all complicated functions of their arguments. Matlab can
help you solve these systems.
y − f 2 = m(x − x 2 ) (14.1)
Figure 14.1 The sequence of ap-
We can solve Eq. (14.1) for the value of x that makes y = 0. If we call this new value proximate points in the secant
of x x 3 , we have method.
f2 f 2 (x 2 − x 1 )
x3 = x2 − = x2 − (14.2)
m f2 − f1
as shown in Fig. 14.1. The value x 3 will be a better approximation to the solution
than either of your two initial guesses, but it still won’t be perfect, so you have
to do it again using x 2 and the new value of x 3 as the two new points. This will
give you x 4 in the figure. You can draw your own line and see that the value of
x 5 obtained from the line between (x 3 , f 3 ) and (x 4 , f 4 ) is going to be pretty good.
And then you do it again, and again, and again, until your approximate solution
is good enough.
Here’s what the code looks like that solves the equation exp(−x) − x = 0 using
this method
1 The secant method is similar to Newton’s method, also called Newton-Raphson, but when a
finite-difference approximation to the derivative is used it is usually called the secant method.
83
84 Chapter 14 Solving Nonlinear Equations
% First plot the function (Note that the second plot is just
% a blue x-axis (y=0) 0*x is just a quick way to load an array
% of zeros the same size as x)
x=0:.01:2;
f=func(x);
plot(x,f,'r-',x,0*x,'b-')
% find f(x1)
f1=func(x1);
Matlab’s Fzero
Matlab has its own zero-finder which internally does something similar to the
secant method described above. To use it to solve the equation f (x) = 0 you must
make an M-file function (called fz.m here) that evaluates the function f (x). Here
is an example function file for f (x) = exp(−x) − x = 0:
Listing 14.2 (fz.m)
function f=fz(x)
Once you have fz.m built, you call fzero and give it a reference to fz.m and
an initial guess, and it does the solve for you. Here is the command to find a zero
of f (x) = 0 near the guess x = 0.7
x=fzero(@fz,0.7)
Note that the function fz.m must be stored in the current directory. The @-sign
syntax tells Matlab that you are passing in a reference to a function.
The way to talk fsolve into solving this set is to first write the system with zeros
on the right side of each equation, like this
Then we write a function file that accepts x, y, and z as arguments and returns
the left sides of the equations. For the equations above, this would look like this:
Listing 14.3 (eqsystem.m)
% nonlinear system of equations routine for
% use with fsolve
86 Chapter 14 Solving Nonlinear Equations
function s=eqsystem(xn)
Eq1 = sin(x*y)+exp(-x*z)-0.95908;
Eq2 = z*sqrt(x^2+y^2) -6.70820;
Eq3 = tan(y/x)+cos(z)+3.17503;
Here is a piece of Matlab code that uses fsolve to solve this system with the
initial guess (1,2,2). fsolve uses a minimizer routine like fminsearch did when
we were fitting data in chapter 12. Basically, it tries a bunch of input values to the
function and searches for the inputs that make your eqsystem.m function return
all zeros. If your initial guess is way off, it can get stuck in a local minimum, and if
your system has multiple solutions, it will only find one.
Listing 14.4 (ch14ex4.m)
% Uses fsolve to look for solutions to the nonlinear system
% of equations defined in the file eqsystem.m
clear; close all;
You could also do the same thing a little more compactly using anonymous,
but you lose some readability. Here is an example that solves the same equations
as above:
Listing 14.5 (ch14ex5.m)
clear;close all;
eqsystem = @(x) [sin(x(1)*x(2))+exp(-x(1)*x(3))-0.95908; ...
x(3)*sqrt(x(1)^2+x(2)^2)-6.70820; ...
tan(x(2)/x(1))+cos(x(3))+3.17503];
x0 = [1; 2; 2];
options=optimset('Display','iter');
[x,fval] = fsolve(eqsystem,x0,options)
The default settings which Matlab uses to plot functions are usually fine
for looking at plots on a computer screen, but they are generally pretty bad
for generating graphics for a thesis or for articles to be published in a journal.
However, with a bit of coaxing Matlab can make plots that will look good in print.
Your documents will look much more professional if you will take some time to
learn how to produce nice graphics files. This chapter will show you some of the
tricks to do this. This material owes a lot to the work of some former students:
Tom Jenkins and Nathan Woods.
Before getting started, let’s review a little about graphics file formats. Raster
formats (e.g. jpeg, bmp, png) are stored as a grid of dots (like a digital photograph).
In contrast, vector image formats store pictures as mathematical formulas de-
scribing the lines and curves, and let the renderer (e.g. the printer or the computer
screen) draw the picture the best it can. Fonts are stored in a vector format so
that they can be drawn well both on the screen and on paper. The most common
format used to store vector graphics in physics is encapsulated postscript (EPS).
Raster graphics are well-suited for on-screen viewing. However, they are
often not a good choice for figures destined for the printer (especially line plots
and diagrams). They often look blurry and pixelated on paper because of the
mismatch between the image resolution and the printer resolution. Although it
is possible to just make really high resolution raster graphics for printing, this
approach makes for very large file sizes.
Although some programs don’t display EPS graphics very nicely on screen
(Word does a particularly bad job with on-screen EPS), the figures look great in
the printed copy or an exported PDF. We will first learn how to make nice EPS
graphics files, and then later we will go over some tips for making nice raster
graphics for a presentation.
87
88 Chapter 15 Publication Quality Plots
err_low = f - 0.5;
Run this example and then select “Save as..." in the figure window, and Matlab
will let you choose to save your plot in the EPS format.
1.5
0.5
−0.5
−1
−1.5
0 1 2 3 4 5 6 7
be smaller, as in Fig. 15.2. But this figure has unreadably small text and almost
−1.5
0 1 2 3 4 5 6 7
invisible lines. It would not be acceptable for physics journals. These journals
have strict requirements on how wide a figure can be in its final form because of
Figure 15.2 Figure 15.1 scaled to
the two-column format (8.5 cm width) they often use. But at the same time they
a size similar to journal require-
require that the lettering be a legible size and that the lines be visible. Journals
ments.
will not fix your figures for you.
While you may not immediately publish in journals, you will almost certainly
15.2 Controlling the Appearance of Figures 89
include plots in your senior thesis. You will want to create something that looks
nice when scaled to a reasonable size. Fortunately, Matlab allows us to change the
visual properties of a plot. Once you have learned the basics, you can use Matlab
to make suitable figures for your thesis and journal articles.
computer’s memory associated with the object. For most objects, you can get the
handle when you create them. For instance, the code
tt = xlabel('My Label');
creates the x-label and also stores a handle for the label object in the variable tt.
Once you have a handle to an object, you can specify the visual properties using
the set command, like this
set(tt,'PropertyName1','PropertyValue1',...)}
This command tells Matlab to take the object with handle tt and set its Property-
Name to PropertyValue. The last comma and dots are not part of the syntax, but
indicate that you can set as many property Name-Value pairs as you want in the
same set command. For instance, to make the x-axis label 20 point Arial font,
you would use the command
set(tt,'FontSize',20,'FontName','Arial');
Take a moment now and modify code to add an x-axis label and change its font
size to 8 point.
One of the most frequently referenced objects on a plot is the axes object. This
object includes the box surrounding the plot, and it also includes all the labels
and titles as child objects. When you set many of the properties of the axes object
(e.g. the font size), the child objects also inherit this setting. This feature makes
the axes object a useful way to set a bunch of things at once. Getting a handle to
an axes object is a little different because you don’t usually create axes objects
manually—Matlab does it for you when you make a plot. To get a handle to an
axes object, you use gca command (which stands for Get Current Axes). For
instance, the command
aa = gca;
stores the handle for the current axes object in the variable aa. Then, to set the
font to 12 point Symbol for that axes object, you would use
set(aa,'FontSize',12,'FontName','Symbol');
Note that you need to use gca to store the current handle in a variable before
you open another set of axes by using another figure or plot command, other-
wise the axes you want to refer to will no longer be the current axes. See “Axes
Properties" in the online help for a list of properties you can set for the axes.
Another frequently used object is the lineseries object, which refers to the lines
or symbols displayed inside an axes object to represent the data. Matlab can
have multiple lineseries plotted on the same set of axes, so we need a way to
reference an individual lineseries independent from the axes on which they are
displayed. Take a moment to modify the example code to get handles to the
individual lineseries objects using the following syntax:
pp=plot(x,f,'b',x,data,'b.',x,err_hi,'r-.',x,err_low,'g--');
15.2 Controlling the Appearance of Figures 91
This syntax stores an array of handles referring to the lineseries objects displayed
by the plot command in the variable pp. The first element, pp(1), refers to the
first lineseries (the plot of f), the second element, pp(2), refers to the second
lineseries (the plot of data), and so forth.
The syntax for setting the properties of the lineseries object is essentially the same
as the axes, except you have to choose the right index of the handle array. To get
the hang of this, modify the example code to change the plot of the data variable
to red stars rather than blue dots using the following command:
set(pp(2),'LineStyle','none','Marker','*','Color',[1 0 0])
Note that here we have chosen to set the color with an RGB value rather than a
preset color (an RGB value is a matrix of three numbers between 0 and 1 which
specify a color).
Because we often need to control the visual styles of the lineseries data, Matlab
gives us shortcuts to set many of the visual properties of the plot data right in the
plot command. You have already learned many of these. You could have gotten
the red star effect simply by changing your plot command to
pp=plot(x,f,'b',x,data,'r*',x,err_hi,'r-.',x,err_low,'g--');
You can also set properties that apply to every lineseries in the plot by putting
name-value pairs at the end of a plot command. For example
pp=plot(x,f,'b',x,data,'r*',x,err_hi,'r-.',x,err_low,'g--','LineWidth',2);
changes the line thickness for the plots to a heavy 2 point line (the default width
is 0.5 point). However, the stars are also drawn with heavy lines which looks kind
of awkward. If you want to control the properties of the lines individually, you
have to go back to the longer syntax with handles. For example
pp = plot(x,f,'b',x,data,'r*',x,err_hi,'r-.',x,err_low,'g--');
set(pp(1),'LineWidth',2);
makes the plot of f heavy, but leaves the rest at the default width. See “lineseries
properties" in the online help for a list of properties you can set for a lineseries.
x=0:0.05:2*pi;
92 Chapter 15 Publication Quality Plots
f=sin(x);
data = f + rand(1,length(x))-0.5;
err_hi = f + 0.5;
err_low = f - 0.5;
The EPS produced using “Save As" is included as Fig. 15.3 in this document so
you can see what was affected by these commands (compare with Fig. 15.1 which
shows the output without the sizing commands).
1.5
0.5
−0.5
−1
−1.5
0 2 4 6 8
Figure 15.3 Plot made in Example 17.3a (no scaling).
x=0:0.05:2*pi;
f=sin(x);
data = f + rand(1,length(x))-0.5;
err_hi = f + 0.5;
err_low = f - 0.5;
% Get a handle to the axes and set the axes visual properties
aa=gca;
94 Chapter 15 Publication Quality Plots
% Make the ticks a little longer, put the symbol for pi in the
% number labels using the symbol font (LaTeX won't work there),
% and set the minor ticks to display.
set(aa,'LineWidth',1,...
'TickLength',get(aa,'TickLength')*2,...
'FontSize',8,... % Set the font for the axes
'FontName','Symbol',... % to get the pi symbol in labels
'XTick',[0 pi/2 pi 3*pi/2 2*pi],...
'XTickLabel',{'0';'p/2';'p';'3p/2';'2p'},...
'XMinorTick','On',...
'YTick',[-1 -.5 0 .5 1],...
'YMinorTick','On')
The EPS output (made using “Save as") produced by this example is included as
Fig. 15.4. Although the code is (of course) more complicated, it does make a graph
that’s suitable for publication. The FontName business can be removed if you
are not trying to get symbols as tick labels (unfortunately you can’t use Matlab’s
TEX capabilities for tick labels). You may have also noticed that the example used
the get command, which allows you to read the current value of a property from
one of the objects that you are controlling.
Subplots
There are a few tricks to controlling the size and appearance of the subplot
figures bound for publication. Here is an example of how to produce a two-axis
plot, formatted to fit in a single column of a journal. Notice that in such a figure,
there are multiple sets of axes, so it is important to be clear which set you are
setting properties for.
Listing 15.4 (ch15ex4.m)
clear;close all;
15.2 Controlling the Appearance of Figures 95
% Make the plot--in this case, we'll just set the lineseries
% properties right in the plot command.
plot(x,f1,'r-',x,f2,'b--','LineWidth',1.5)
'XTick',[0 20 40 60 80 100],...
'YTick',[-1 -.5 0 .5 1])
% Set limits
axis([0 100 -1.1 1.1]);
Multiplication of Functions
1
0.5
f1(x), f2(x)
−0.5
−1
0 20 40 60 80 100
x
1
0.5
f1(x)* f2(x)
−0.5
−1
0 20 40 60 80 100
x
dialog and then choosing a raster format in the “Save as..." dialog. However, this
can sometimes give mixed results.
We have found better results by exporting via the Matlab print command. (See
Matlab help for details on print.) To use this method, make sure to get a handle
to the figure window when it is created using the
ff=figure
syntax. Then control the size and appearance as we discussed above for making
EPS figures. Then once your figure looks right, you can use the following code:
set(ff,'PaperUnits',Units,...
'PaperSize',[figWidth figHeight],...
'PaperPosition',[0 0 figWidth figHeight]);
print -djpeg -r600 'Test.jpg'
to make a jpeg image with good resolution (600 dpi). This code assumes you put
the size in the variables Units, figWidth, and figHeight as before. The raster
images that Matlab produces sometimes get rendering oddities in them, and
they don’t do anti-aliasing to smooth the lines. This can sometimes be helped by
increasing resolution or changing what rendering method Matlab uses (see the
Renderer property in “Figure Properties" in Matlab help).1
1 You can often get better and more reliable results in making raster figures for presentations
98 Chapter 15 Publication Quality Plots
Another situation where raster graphics may be called for is for 3-D surface plots
with lighting, etc. These are hard to render in vector graphics formats, so even
when destined for printing you may be better off making a raster figure file. Just
control the resolution as shown in the example code above to make sure your
printed versions look OK.
by creating the EPS figure and then converting the EPS file directly using a good raster imaging
program. However, this requires a good raster imaging program which we don’t have available in
the department labs. The Matlab renderer usually makes figures that work just fine, however.
Index
99
100 INDEX
Roots, polynomial, 64
Row, selecting with :, 4
Runge-Kutta, 46
Running scripts, 10
Taylor’s theorem, 56
Tests, logical, 19
Text, on plots, 23
TolX, fminsearch option, 70
Transpose, 62
While, 19
Workspace window, 10
Write data to a string: sprintf, 24
Xlim, 22
Ylim, 22
Zero matrix, 63
Zoom in and out, 31