1 / 37

Lecture 6 Sept 15, 09 Goals:

This lecture covers topics such as creating and accessing two-dimensional arrays, performing matrix operations, analyzing circuits using Matlab, and simple image processing examples.

goldston
Download Presentation

Lecture 6 Sept 15, 09 Goals:

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lecture 6 Sept 15, 09 • Goals: • two-dimensional arrays • matrix operations • circuit analysis using Matlab • image processing – simple examples

  2. 4.2. Matrices Example: The following 2 x 3 matrix (matA) can be created in Matlab as follows: Dimension of a matrix can be accessed by function called size.

  3. Accessing and modifying array elements

  4. Accessing and modifying array elements

  5. Accessing and modifying array elements

  6. Matrix operations Matrix addition, multiplication, inverse, determinant etc.

  7. Matrix operations Matrix addition, multiplication, inverse, determinant, transpose etc.

  8. Logical indexing in 2-dim matrices

  9. Exercise: Solve a linear system of equations: 3x + 5y – 6z= 11 4x – 6y + z = 9 -2x + 3y + 5z = –13

  10. Example 2

  11. Sum, max, min, size etc.

  12. 4.3. Mixed Data Types Structure is variable that can hold a group of data (of different types). Example:

  13. Array of structures Example:

  14. Cell arrays A cell array is like a vector, except that each member need not be all of the same type.

  15. Images as arrays

  16. Images as arrays Numerical representation of array (gray scale image) Visual representation

  17. Reading and opening an image

  18. Selecting a subimage Just like we can copy a part of an array into another array, we can copy a part of one image and create a new image.

  19. Changing some pixel values in an image

  20. Saving images in different formats • Image formats: • jpeg, bmp, png etc. • >> imwrite(I, ‘king.bmp’) • will save I in bmp format.

  21. image rotation Exercise: Write a one-line statement in Matlab that will rotate an image by 180 degrees.

  22. image rotation Exercise: Write a one-line statement in Matlab that will rotate an image by 180 degrees.

  23. image rotation Exercise: Write a one-line statement in Matlab that will rotate an image by 180 degrees. >> J = I(size(I,1):-1:1, :, :);

  24. Discussions and exercises, Chapter 4 Exercise 4.1

  25. Exercise 4.2 • Write statements to do the following operations on a vector x: • Return the odd indexed elements.

  26. Exercise 4.2 Write statements to do the following operations on a vector x: 2) Return the first half of x.

  27. Exercise 4.2 Write statements to do the following operations on a vector x: 3) Return the vector in the reverse order.

  28. Exercise 4.3 Given a vector v, and a vector k of indices, write a one or two statement code in Matlab that removes the elements of v in positions specified by k. Example: >> v = [1, 3, 5, 7, 11, 9, 19] >> k = [2, 4, 5] >> < your code here> >> v ans = 1, 5, 9, 19

  29. Exercise 4.3 Given a vector v, and a vector k of indices, write a one or two statement code in Matlab that removes the elements of v in positions specified by k.

  30. Exercise 4.4 what does Matlab output for the following commands? 1) 6 ~= 1 : 10 2) (6 ~= 1) : 10

  31. Exercise 4.4 what does Matlab output for the following commands? 1) 6 ~= 1 : 10 2) (6 ~= 1) : 10

  32. Exercise 4.5. (This is a bit tricky, especially without using a loop construct like while or for.) Write a statement to return the elements of a vector randomly shuffled. Hint provided is a useful one. First understand how sort function works.

  33. Reshaping Arrays • Arrays are actually stored in column order in Matlab. So internally, a 2 × 3 array is stored as a column vector:A(1,1) A(2,1) A(1,2) A(2,2) A(1,3) A(2,3) • Any n × m array can be reshaped into any p × q array as long as n*m = p*q using the reshape function.

  34. Summary This chapter introduced you to vectors and arrays. For each collection, you saw how to: ■ Create them by concatenation and a variety of special-purpose functions ■ Access and remove elements, rows, or columns ■ Perform mathematical and logical operations on them ■ Apply library functions, including those that summarize whole columns or rows ■ Move arbitrary selected rows and columns from one array to another ■ image – how to create them, open them, change etc.

More Related