Advertisement
Guest User

Untitled

a guest
Mar 19th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. mat3x3:
  2. mat[0]= cos(y)cos(z) = 1/2 (cos(y-z)+cos(y+z))
  3. mat[1]= -cos(y)sin(z) = 1/2 (sin(y-z)-sin(y+z))
  4. mat[2]= sin(y)
  5.  
  6. mat[3]= sin(x)sin(y)cos(z)+cos(x)sin(z)
  7. =1/4 (cos(x-y-z)-cos(x+y-z)+cos(x-y+z)-cos(x+y+z)-2 sin(x-z)+2 sin(x+z))
  8. mat[4]=
  9. mat[5]= -sin(x)cos(y) = 1/2 (-sin(x-y)-sin(x+y))
  10.  
  11. mat[6]=
  12. mat[7]=
  13. mat[8]=cos(x)cos(y) = 1/2 (cos(x-y)+cos(x+y))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement