Matlab and Matrices: Math 45 - Linear Algebra David Arnold David-Arnold@Eureka - Redwoods.cc - Ca.us
Matlab and Matrices: Math 45 - Linear Algebra David Arnold David-Arnold@Eureka - Redwoods.cc - Ca.us
Matlab and Matrices: Math 45 - Linear Algebra David Arnold David-Arnold@Eureka - Redwoods.cc - Ca.us
Introduction
This is an interactive document designed for online viewing. Weve constructed this onscreen documents because we want to make a conscientious eort to cut down on the amount of paper wasted at the College. Consequently, printing of the onscreen document has been purposefully disabled. However, if you are extremely uncomfortable viewing documents onscreen, we have provided a print version. If you click on the Print Doc button, you will be transferred to the print version of the document, which you can print from your browser or the Acrobat Reader. We respectfully request that you only use this feature when you are at home. Help us to cut down on paper use at the College. Much eort has been put into the design of the onscreen version so that you can comfortably navigate through the document. Most of the navigation tools are evident, but one particular feature warrants a bit of explanation. The section and subsection headings in the onscreen and print documents are interactive. If you click on any section or subsection header in the onscreen document, you will be transferred to an identical location in the print version of the document. If you are in the print version, you can make a return journey to the onscreen document by clicking on any section or subsection header in the print document. Finally, the table of contents is also interactive. Clicking on an entry in the table of contents takes you directly to that section or subsection in the document.
1.1
Entering Matrices
Entering matrices in Matlab is easy. Enter the following at the Matlab prompt.
>> A=[1,2,3;4,5,6;7,8,9] Note how semicolons signal the end of a row, while commas are used to separate the entries in a row. Spaces can also be used to separate the entries in a row. >> A=[1 2 3;4 5 6;7 8 9]
2.1
When performing simulations in Matlab it is useful to build matrices of random numbers. You can create a matrix of uniformly distributed random numbers, each between 0 and 1 (0 inclusive), with the following commands. >> A=rand(6) >> B=rand(5,3) Scalar multiplication works with matrices in exactly the same manner as with vectors. >> C=10*rand(5) Matlab has a variety of routines that round numbers. >> >> >> >> D=floor(C) D=ceil(C) D=round(C) D=fix(C)
The identity matrix has ones on its main diagonal and zeros everywhere else. 3 >> I=eye(5)
For a list of these elementary matrices, type help elmat at the Matlab prompt. Remember, help is readily available for any Matlab function. For example, type help zeros to receive help on the zeros function. 3 The import of the identity matrix will be investigated in later activities.
2
Other types of diagonal matrices are possible with Matlabs diag command. >> E=diag([1,2,3,4,5]) >> F=diag([1,2,3,4,5],-1) >> G=diag(1:5,1)
2.2
2.3
Suppressing Output
Remember, appending a semicolon to any Matlab command will suppress the output. This is useful if the result is large and you have no desire to view it. >> K=rand(100);
2.4
Matlabs Workspace
Take a moment to examine Matlabs workspace with the whos command. >> whos Note the size of each of the variables in your workspace is given. Of course, you could also nd the size of the matrix I by entering >> size(I)
Indexing Matrices
The following notation is used to denote a matrix with 3 a11 A = a21 a31 rows and 3 columns. a12 a13 a22 a23 a32 a33
Note that a12 refers to the entry in row 1, column 2. In general, aij refers to the entry in row i, column j. Matlab uses similar notation to identify the elements of a matrix. >> A=pascal(5) >> A(1,2) >> A(3,4) In general, A(i,j) refers to the element in row i, column j of matrix A.
3.1
Building Matrices
Matlab allows you to build complex matrices out of vectors and matrices.
4.1
>> v1=1:3 >> v2=4:6 >> v3=7:9 The command >> M=[v1;v2;v3] builds a matrix with the vectors v1, v2, and v3 each forming a row of the matrix M. The command >> N=[v1,v2,v3] produces a signicantly dierent but logical result. Change the vectors v1, v2, and v3 into column vectors with the transpose operator. >> v1=v1 >> v2=v2 >> v3=v3 The command >> P=[v1,v2,v3] builds a matrix with the vectors v1,v2, and v3 each forming a column of the matrix P. Of course, you could have achieved the same result by taking the transpose of the matrix M. >> M
4.2
4.3
is not. You can also augment two or more matrices. Remember, each row and column of a matrix must have the same number of elements. Thus, >> A=magic(3),B=ones(3,4) >> M=[A,B] is valid, but >> N=[A;B] is not.
4.4
Homework
Answer questions 1-11 on regular notebook paper. Be sure to test your responses at the computer. 1. Write the Matlab commands that generate each of the following matrices. 1 1 3 a. 3 1 6 4 4 10 0 8 7
10 5 6 5 8 4 b. 5 10 3 8 8 5 2. 3. Write a simple command that will create a 3 5 matrix where each entry is the number 3. Craft a Hilbert matrix with the following commands.
>> format rat >> H=hilb(5) >> format Develop a formula for the entry in row i, column j of the matrix H. That is, nd an expression for H(i, j) in terms of i and j. 4. Explain the dierence between the commands floor, ceil, round, and fix. Demonstrate with examples in Matlab. Write a Matlab command that will generate a 4 4 matrix lled with random integers between 5 and 5. Technically, is Matlabs conjugate transpose operator. To see this, enter the matrix A=[1, 2+i, sqrt(2); 3, 3-i, sqrt(-1)], then type A. Describe the result. What happens when you enter A.? Explain the dierence between the transpose operators and .. What is the entry in row 5 column 7 of matrix pascal(10)? What Matlab commands do you use to nd this entry? Let T=toeplitz(1:7). Write a Matlab command that will a. b. c. 9. place the even rows of matrix T into the matrix B. place the odd columns of matrix T in matrix C. place the last column of the matrix T in the vector b.
5. 6.
7.
8.
The system of equations x1 + 2x2 3x3 = 4 2x1 3x3 = 2 x2 + x3 = 0 has coecient matrix and answer vector
1 A = 2 0
2 3 0 3 1 1
4 and b = 2 , 0
respectively. Form the augmented matrix M=[A,b] and place the augmented matrix in reduced row echelon form with the command rref(M). 10. Let x=(0:pi/2:2*pi). What Matlab commands will create a matrix whose rst row is x, whose second row is the sine of each entry in x, and whose third row is the cosine of each entry in x? 11. Let x=linspace(0,10). What Matlab commands will create a matrix whose rst column is x, whose second column is the square of each entry in x, and whose third column is the reciprocal of each entry in x?