Presentation is loading. Please wait.

Presentation is loading. Please wait.

Matrices and MATLAB Dr Viktor Fedun

Similar presentations


Presentation on theme: "Matrices and MATLAB Dr Viktor Fedun"— Presentation transcript:

1 Matrices and MATLAB Dr Viktor Fedun
Automatic Control and Systems Engineering, C09 Based on lectures by Dr Anthony Rossiter

2 Examples of a matrix

3 Examples of a matrix

4 Examples of square matrices
Examples of a matrix A matrix can be thought of simply as a table of numbers with a given number of rows and columns. Example A has 3 rows and 3 columns, example B has 4 rows and 4 columns. Examples of square matrices

5 Examples of non-square matrices
Examples of a matrix A matrix can be thought of simply as a table of numbers with a given number of rows and columns. Example A has 2 rows and 3 columns, example B has 3 rows and 1 column. Examples of non-square matrices

6 What use are matrices? Compact form for storing data (equivalent to a table but more flexible). Each column(or row) can relate to a different ‘state’: e.g. Time, displacement, velocity, temperature, etc. Convenient for computer code (and algebra) as can store and share large quantities of related data with a single variable. Easily extend to dynamic relations/modelling.

7 Column index increasing
Indexing of matrices Always give as {row index,column index} Start counting from top left, so the top left component is index {1,1}, e.g. indices are given as: Column index increasing Row index increasing

8 What is the index of the component -4
{1,3} {1,2} {2,1} {3,1} {4,3}

9 What is the index of the component -4
{1,3} {1,2} {2,1} {3,1} {4,3}

10 Create a matrix with following information
2nd row and 3rd column is 5 4th row and 2nd column is 2 1st row and 5th column is 6 Remainder are 0. Note MATLAB syntax matches that used in mathematics, i.e. row index and then column index. TRY this on MATLAB A(2,3)=5; A(4,2)=2; A(1,5)=6; disp(A)

11 Extracting parts of matrices
Example of selecting given rows and columns. Can rearrange the order if desired.

12 Matrices The main thing to note is that the default variable in MATLAB is a matrix (or vector if the row or column dimension is one). Any BODMAS type operation that is valid with matrices can be carried out with the same syntax. MATLAB also includes a large number of matrix analysis tools that you will find useful in the 2nd year.

13 Matrices and MATLAB for plots
A student collects data from an experiment and stores the answer in a matrix data_exp1. Column 1 corresponds to time. Column 2 to temperature Column 3 is voltage supplied. It is now simple to code and plot this data – the corresponding code is shown next.

14 MATLAB example

15 Correcting data Student is told that the temperature readings were all out by 2 degrees due to a calibration error. Once the data is in a matrix, update is very efficient. Use line: data_exp1(:,2)=data_exp1(:,2)+2 This will work not matter how many items of data are affected.

16 Often the comma is omitted for low value integers
Matrix notation Within a textbook, it is more normal to use subscripts to represent the indices, so for example: Often the comma is omitted for low value integers

17 Matrix notation

18 Matrix notation

19 Matrix notation

20 Matrix notation

21 Matrix notation

22 Flexibility As an engineer you need to be flexible and work out what notation a particular article, website, book, etc is using. Usually it will be obvious from the context and usage as long as your understand the core principles.

23 Which statement is false?
D12=-3 D21=6 D32=2 D23=2 D33=0

24 Matrix dimensions What are the dimensions of the following matrices?

25 Matrix dimensions summary
Dimensions are always number of rows first and then number of columns second. Typical notation is 2 by 3 or 4 by 1 or similar. Describe dimensions of matrices on previous slide. Indexing begins from top left corner.

26 Matrix transpose This is a very common operation so it is critical that students are familiar with the notation. There is nothing to understand as it is simply a definition.

27 Matrix transpose This is a very common operation so it is critical that students are familiar with the notation. There is nothing to understand as it is simply a definition.

28 Matrix transpose definition
The transpose is determined by swapping the position of all the indices, that is {1,2} becomes {2,1}, etc. You could view this a bit like doing a reflection about the principle diagonal. Diagonal elements do not change.

29 Examples of Matrix transpose
Alternative insight. The jth column of A is the jth row of A transpose.

30 Matrix transpose examples
Find the transpose of the following:

31 Which is the correct transpose of G?
B C D None of these

32 Addition and subtraction of matrices

33 Addition and subtraction of matrices
Add (or subtract) components in same position, that is with the same {row, column} index. Matrices must be same dimensions or you cannot add them!

34 Do following matrices computations

35 Which is incorrect (could be several)?
G+C=F G-C=-F A+D=E D-A=-E None of these

36 Do following matrix computations

37 MATRIX handling in MATLAB
Matrix addition/subtraction Matrix multiplication Matrix powers Matrix inversion Extracting parts of matrices A+B, A-B, A-2*B+C A*B A^3 inv(A) or A^(-1) A([1,3],[2, 4])

38 Matrix multiplication
This is the most common skill you will need. The technique is simply a definition that you need to memorise. There is no such thing as matrix division!

39 Basic rule for multiplication (BY DEFINITION – not to understand)
Index {i,j} of result is determined from row {i} of left hand matrix and column {j} of right hand matrix. Multiplying a row on left by a column on the right is a ‘dot-product’ type of operation, e.g.

40 What is the result of the following ?
88 52 32

41 What is the result of the following ?
18 21 27 Don’t know

42 What is the result of the following ?
1 6 NA Not sure

43 KEY OBSERVATION A row vector can only be multiplied onto a column vector if the two vectors are the same length. Number of columns of left hand vector must match the number of rows of the right hand vector. If vectors have different dimensions, multiplication is not defined.

44 Rules for matrix multiplication
Assume we wish to do C=A*B. A must have same number of columns as B has rows Columns of A Columns of C Columns of B B Rows of C C A Rows of B = Rows of A

45 Basic rule for multiplication
Index {i,j} or result is determined from row {i} of left hand matrix and column {j} of right hand matrix. Multiplying a row on left by a column on the right is a ‘dot-product’ type of operation, e.g.

46 Student problem Solve the following multiplications.

47 Student problem 2 – compute C,D

48 KEY OBSERVATION Two matrices can only be multiplied if the column dimension of the left matrix matches the row dimension of the right matrix. In general In fact, it is possible that AB exists but BA does not! The property of AB=BA is called commutativity and does not hold for matrices in general.

49 Uses of matrix multiplication
A simple example involves the change of coordinates from one set to another – this is commonly needed for robotics and mechanics. V=(x,y) y Y’ X’ θ x

50 Simultaneous equations
Matrix/vector algebra is a compact and efficient method for handling linear simultaneous equations and most effective techniques deployed assume matrix representation of this problem. [Details in semester 2] MATLAB automatically handles simultaneous equations with matrices and vectors which greatly simplifies solution and manipulation. [Try this now!]

51 Using Matrices for simultaneous equations
Consider a single linear equation and write in MATRIX/VECTOR format, e.g.

52 Put following into matrix-vector format

53 Simultaneous equations
Assume user knows how to put simultaneous equations into matrix vector format, ie. AX=b Can solve with MATLAB several different ways; X=inv(A)*b X=A\b Numerically efficient code is discussed in text books and semester 2 of ACS123. Try on MATLAB

54 determinants ONLY DEFINED FOR SQUARE MATRICES
You will cover solution of simultaneous equations in semester 2. However, in order to prepare for this, you will need familiarity and skill with the determinant of a matrix. Final matrix topic here is define ‘determinant’. NOTE: This is a definition and therefore must be learnt as a fact. ONLY DEFINED FOR SQUARE MATRICES

55 Determinant in brief In conceptual terms, a determinant gives an indication of the ‘magnitude’ of a matrix, that is, on average, what scale of impact does it have on vectors when multiplying those vectors. You will notice that the effective magnification is direction dependent, and so the determinant is an average in some sense. Scaled by factor of 5. Scaled by factor of 1.

56 Determinant – key fact If the determinant is very small, then there exists a least one direction, which when multiplied by the matrix, results in a very small scaling factor. A zero determinant means at least one direction can be mapped to zero. Scaled by factor of 16 (approx). Scaled by factor of 0.1 (approx).

57 Determinant for 2 by 2 matrices
The determinant is defined as product of the diagonal elements minus the product of the off-diagonal elements: Note use of vertical lines around matrix is notation use to define determinant. Try this on the examples of the previous few slides.

58 Determinant computations

59 Find the determinant of matrix D
-12 28 12 -28 unsure

60 Find the determinant of matrix F
24 -24 -32 unsure

61 Determinant for 3 by 3 matrices
The determinant is defined using the concept of a matrix of cofactors Aij. For convenience define the original matrix with lower case and the matrix of cofactors with upper case. Next, by definition:

62 Defining the cofactor terms
A cofactor is taken as the determinant of a minor with a sign change if appropriate to the position. A minor is the matrix remaining when the row and column associated to an element are crossed out.

63 Defining the cofactor terms
A cofactor is taken as the determinant of a minor with a sign change if appropriate to the position. A minor is the matrix remaining when the row and column associated to an element are crossed out.

64 Find the matrix of cofactors and determinant

65 Find the matrix of cofactors and determinant

66 Determinant for 4 by 4 matrices
The determinant is defined using the concept of a matrix of cofactors Aij (as for the 3 by 3 case) For convenience define the original matrix with lower case and the matrix of cofactors with upper case. Next, by definition: The extension to larger matrices should be obvious, although this is not a paper and pen exercise.

67 Defining the cofactor terms for a 4 by 4
A cofactor is taken as the determinant of a minor with a sign change if appropriate to the position. A minor is the matrix remaining when the row and column associated to an element are crossed out.

68 Remarks on 4 by 4 determinants
A minor is now a 3 by 3 matrix and therefore each cofactor requires the computation of the determinant of a 3 by 3 For a 5 by 5 matrix, the minors would each require the computation of a 4 by 4 determinant. Determinants of larger matrices are best done using properties and tricks to minimise the numeric computations. Alternatively, and more likely, use a computer.

69 Properties of determinants
Adding a multiple of any row to another row does not change the determinant. If two rows (or two columns) are equal then the determinant is zero. Scaling any row by λ results in a scaling of the determinant by λ Interchanging rows (or columns) changes the sign of the determinant. A lower or upper triangular matrix has a determinant given as product of diagonal terms. The determinant of a matrix and determinant of its transpose are equal

70 Properties of determinants
Adding a multiple of any row to another row does not change the determinant.

71 Properties of determinants
2. If two rows (or two columns) are equal then the determinant is zero.

72 Properties of determinants
3. Scaling any row by λ results in a scaling of the determinant by λ.

73 Properties of determinants
4. Interchanging rows (or columns) changes the sign of the determinant.

74 Properties of determinants
5. A lower or upper triangular matrix has a determinant given as product of diagonal terms.

75 Properties of determinants
6. The determinant of a matrix and determinant of its transpose are equal

76 Find the determinant (using properties)
Check answers using MATLAB – e.g det(A)

77 Find the determinant (using properties)
Check answers using MATLAB – e.g det(A)

78 Find the determinant (using properties)

79 Find the determinant (using properties)

80 Find the determinant (using properties)

81 Adjoint The adjoint matrix is the transpose of the matrix of cofactors. This will be used in semester 2 for solving linear simultaneous equations. All the cofactors need to be computed! THIS IS TEDIOUS! However: The adjoint is not needed if only the determinant is required.


Download ppt "Matrices and MATLAB Dr Viktor Fedun"

Similar presentations


Ads by Google