Getting started with strings LO - script and questions.
.. 4.3 LO: Matrices (3) [anoop] .. -----------------------------.. * creating matrices .. + direct data .. + list conversion .. + builtins - identitiy, zeros, .. * matrix operations .. + + - * / .. + dot .. + inv .. + det .. + eig .. + norm .. + svd ========Matrices========{{{ show the welcome slide }}}Welcome to the spoken tutorial on Matrices.{{{ switch to next slide, outline slide }}}In this tutorial we will learn about matrices, creating matrices andmatrix operations.{{{ creating a matrix }}}All matrix operations are done using arrays. Thus all the operationson arrays are valid on matrices also. A matrix may be created as,:: m1 = matrix([1,2,3,4])Using the tuple ``m1.shape`` we can find out the shape or size of thematrix,:: m1.shapeSince it is a one row four column matrix it returned a tuple, one byfour.A list can be converted to a matrix as follows,:: l1 = [[1,2,3,4],[5,6,7,8]] m2 = matrix(l1)Note that all matrix operations are done using arrays, so a matrix mayalso be created as:: m3 = array([[5,6,7,8],[9,10,11,12]]){{{ switch to next slide, matrix operations }}}We can do matrix addition and subtraction as,:: m3 + m2does element by element addition, thus matrix addition.Similarly,:: m3 - m2it does matrix subtraction, that is element by elementsubtraction. Now let us try,:: m3 * m2Note that in arrays ``array(A) star array(B)`` does element wisemultiplication and not matrix multiplication, but unlike arrays, theoperation ``matrix(A) star matrix(B)`` does matrix multiplication andnot element wise multiplication. And in this case since the sizes arenot compatible for multiplication it returned an error.And element wise multiplication in matrices are done using thefunction ``multiply()``:: multiply(m3,m2)Now let us see an example for matrix multiplication. For doing matrixmultiplication we need to have two matrices of the order n by m and mby r and the resulting matrix will be of the order n by r. Thus let usfirst create two matrices which are compatible for multiplication.:: m1.shapematrix m1 is of the shape one by four, let us create another one ofthe order four by two,:: m4 = matrix([[1,2],[3,4],[5,6],[7,8]]) m1 * m4thus unlike in array object ``star`` can be used for matrix multiplicationin matrix object.{{{ switch to next slide, recall from arrays }}}As we already saw in arrays, the functions ``identity()``,``zeros()``, ``zeros_like()``, ``ones()``, ``ones_like()`` may also beused with matrices.{{{ switch to next slide, matrix operations }}}To find out the transpose of a matrix we can do,:: print m4 m4.TMatrix name dot capital T will give the transpose of a matrix{{{ switch to next slide, Euclidean norm of inverse of matrix }}}Now let us try to find out the Euclidean norm of inverse of a 4 by 4matrix, the matrix being,:: m5 = matrix(arange(1,17).reshape(4,4)) print m5The inverse of a matrix A, A raise to minus one is also called thereciprocal matrix such that A multiplied by A inverse will give 1. TheEuclidean norm or the Frobenius norm of a matrix is defined as squareroot of sum of squares of elements in the matrix. Pause here and tryto solve the problem yourself, the inverse of a matrix can be foundusing the function ``inv(A)``.And here is the solution, first let us find the inverse of matrix m5.:: im5 = inv(m5)And the euclidean norm of the matrix ``im5`` can be found out as,:: sum = 0 for each in array(im5.flatten())[0]: sum += each * each print sqrt(sum){{{ switch to next slide, infinity norm }}}Now try to find out the infinity norm of the matrix im5. The infinitynorm of a matrix is defined as the maximum value of sum of theabsolute of elements in each row. Pause here and try to solve theproblem yourself.The solution for the problem is,:: sum_rows = [] for i in im5: sum_rows.append(abs(i).sum()) print max(sum_rows){{{ switch to slide the ``norm()`` method }}}Well! to find the Euclidean norm and Infinity norm we have an even easiermethod, and let us see that now.The norm of a matrix can be found out using the method``norm()``. Inorder to find out the Euclidean norm of the matrix im5,we do,:: norm(im5)And to find out the Infinity norm of the matrix im5, we do,:: norm(im5,ord=inf)This is easier when compared to the code we wrote. Do ``norm``question mark to read up more about ord and the possible type of normsthe norm function produces.{{{ switch to next slide, determinant }}}Now let us find out the determinant of a the matrix m5. The determinant of a square matrix can be obtained using the function``det()`` and the determinant of m5 can be found out as,:: det(m5){{{ switch to next slide, eigen vectors and eigen values }}}The eigen values and eigen vector of a square matrix can be computedusing the function ``eig()`` and ``eigvals()``.Let us find out the eigen values and eigen vectors of the matrixm5. We can do it as,:: eig(m5)Note that it returned a tuple of two matrices. The first element inthe tuple are the eigen values and the second element in the tuple arethe eigen vectors. Thus the eigen values are,:: eig(m5)[0]and the eigen vectors are,:: eig(m5)[1]The eigen values can also be computed using the function ``eigvals()`` as,:: eigvals(m5){{{ switch to next slide, singular value decomposition }}}Now let us learn how to do the singular value decomposition or S V Dof a matrix.Suppose M is an m�n matrix whose entries come from the field K, whichis either the field of real numbers or the field of complexnumbers. Then there exists a factorization of the form M = U\Sigma V starwhere U is an (m by m) unitary matrix over K, the matrix \Sigma is an(m by n) diagonal matrix with nonnegative real numbers on thediagonal, and V*, an (n by n) unitary matrix over K, denotes theconjugate transpose of V. Such a factorization is called thesingular-value decomposition of M.The SVD of matrix m5 can be found as:: svd(m5)Notice that it returned a tuple of 3 elements. The first one U thenext one Sigma and the third one V star.{{{ switch to next slide, recap slide }}}So this brings us to the end of this tutorial. In this tutorial, welearned about matrices, creating matrices, matrix operations, inverseof matrices, determinant, norm, eigen values and vectors and singularvalue decomposition of matrices.{{{ switch to next slide, thank you }}}Thank you!.. Author: Anoop Jacob Thomas <anoop@fossee.in> Reviewer 1: Reviewer 2: External reviewer: