1 / 21

Announcements

Announcements. Problem Set 2, handed out today, due next Tuesday. Late Homework should be turned into my office with date and time written on it. Mail problem sets in one zipped file to farrell (at) cs.umd.edu. When emailing matlab code to Ryan, use subject: CMSC 426 Matlab code.

ziya
Download Presentation

Announcements

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. Announcements • Problem Set 2, handed out today, due next Tuesday. • Late Homework should be turned into my office with date and time written on it. • Mail problem sets in one zipped file to farrell (at) cs.umd.edu. When emailing matlab code to Ryan, use subject: CMSC 426 Matlab code.

  2. Matlab tutorial and Linear Algebra Review • Today’s goals: • Learn enough matlab to get started. • Review some basics of Linear Algebra • Essential for geometry of points and lines. • But also, all math is linear algebra. • (ok slight exaggeration). • Many slides today adapted from Octavia Camps, Penn State.

  3. Starting Matlab • For PCs, Matlab should be a program. • For Sun’s: Numerical Analysis and Visualization Matlab 6.1

  4. Help • help • help command Eg., help plus • Help on toolbar • demo • Tutorial: http://amath.colorado.edu/scico/tutorials/matlab/

  5. Matlab interpreter • Many common functions: see help ops

  6. Vectors • Ordered set of numbers: (1,2,3,4) • Example: (x,y,z) coordinates of pt in space.

  7. Indexing into vectors

  8. Vector Addition V+w v w

  9. Scalar Product av v

  10. Operations on vectors • sum • max, min, mean, sort, … • Pointwise: .^

  11. v  w Inner (dot) Product The inner product is a SCALAR!

  12. How do we prove these properties of the inner product? Let’s start with the fact that orthogonal vectors have 0 inner product. Suppose one vector is (x,y), and WLOG x,y>0. Then, if we rotate that by 90 degrees counterclockwise, we’ll get (y, -x). Rotating the vector is just like rotating the coordinate system in the opposite direction. And (x,y)*(y,-x) = xy – yx = 0. Next, note that v*w = (v*w)/(||v||||w||) * ||v||||w|| This means that if we can show that when v and w are unit vectors v*w = cos alpha, then it will follow that in general v*w = ||v|| ||w|| cos alpha. So suppose v and w are unit vectors. Next, note that if w1 + w2 = w, then v*w = v*(w1+w2) = v*w1 + v*w2. For any w, we can write it as the sum of w1+w2, where w1 is perpendicular to v, and w2 is in the same direction as v. So v*w1 = 0. v*w2 = ||w2||, since v*w2/||w2|| = 1. Then, if we just draw a picture, we can see that cos alpha = ||w2|| = v*w2 = v*w.

  13. Matrices Sum: A and B must have the same dimensions

  14. Matrices Product: A and B must have compatible dimensions Identity Matrix:

  15. Matrices Transpose: A is symmetric If

  16. Indexing into matrices

  17. Files Matlab

  18. Functions • Format: function o = test(x,y) • Name function and file the same. • Only first function in file is visible outside the file. • Look at sample function

  19. Images • Black and white image is a 2D matrix. • Intensities represented as pixels. • Color images are 3D matrix, RBG. • Matlab

  20. Debugging • Add print statements to function by leaving off ; • keyboard • debug and breakpoint

  21. Conclusions • Quick tour of matlab, you should teach yourself the rest. We’ll give hints in problem sets. • The inner product will be very important.

More Related