Guest User

Untitled

a guest
Feb 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. mx1 = np.matrix([[2,0,9],[0,5,8],[1,2,0]])
  2.  
  3. [[2 0 9]
  4. [0 5 8]
  5. [1 2 0]]
  6.  
  7. mx2 = np.matrix([[5,6,2],[3,3,7],[0,1,6]])
  8.  
  9. [[5 6 2]
  10. [3 3 7]
  11. [0 1 6]]
  12.  
  13. [[2 6 9]
  14. [3 5 8]
  15. [1 2 6]]
Add Comment
Please, Sign In to add comment