Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. import numpy
  2.  
  3. c1 = [[1, 1/7, 1/5]
  4.       [7, 1, 3]
  5.       [5, 1/3, 1]]
  6.      
  7. c2 = [[1, 5, 9]
  8.       [1/5, 1, 4]
  9.       [1/9, 1/4, 1]]
  10.      
  11. c3 = [[1, 4, 1/5]
  12.       [1/4, 1, 1/9]
  13.       [5, 9, 1]]
  14.      
  15. c4 = [[1, 9, 4]
  16.       [1/9, 1, 1/4]
  17.       [1/4, 4, 1]]
  18.  
  19. c5 = [[1, 1, 1]
  20.       [1, 1, 1]
  21.       [1, 1, 1]]
  22.  
  23. c6 = [[1, 6, 4]
  24.       [1/6, 1, 1/3]
  25.       [1/4, 3, 1]]
  26.  
  27. c7 = [[1, 9, 4]
  28.       [1/9, 1, 1/4]
  29.       [1/4, 4, 1]]
  30.  
  31. c8 = [[1, 1/2, 1/2]
  32.       [2, 1, 1]
  33.       [2, 1, 1]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement