Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. m0=eye(3)
  2. rotatem =@(theta) [cos(theta) -sin(theta) 0;
  3. sin(theta) cos(theta) 0;
  4. 0 0 1]
  5.  
  6. scalem = [1 0 0;
  7. 0 -1 0;
  8. 0 0 1]
  9.  
  10. syms t
  11. an = rotatem(t) * scalem * rotatem(t)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement