home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / vector.py < prev   
Encoding:
Python Source  |  2005-11-09  |  7.2 KB  |  392 lines

  1. #!/usr/bin/env python
  2. # a python vector class
  3. # A. Pletzer 5 Jan 00/11 April 2002
  4. #
  5. import math
  6.  
  7. """
  8. A list based vector class that supports elementwise mathematical operations
  9.  
  10. In this version, the vector call inherits from list; this 
  11. requires Python 2.2 or later.
  12. """
  13.  
  14. class vector(list):
  15.     """
  16.         A list based vector class
  17.     """
  18.     # no c'tor
  19.  
  20.     def __getslice__(self, i, j):
  21.         try:
  22.             # use the list __getslice__ method and convert
  23.             # result to vector
  24.             return vector(super(vector, self).__getslice__(i,j))
  25.         except:
  26.             raise TypeError, 'vector::FAILURE in __getslice__'
  27.         
  28.     def __add__(self, other):
  29.         return vector(map(lambda x,y: x+y, self, other))
  30.  
  31.     def __neg__(self):
  32.         return vector(map(lambda x: -x, self))
  33.     
  34.     def __sub__(self, other):
  35.         return vector(map(lambda x,y: x-y, self, other))
  36.  
  37.     def __mul__(self, other):
  38.         """
  39.         Element by element multiplication
  40.         """
  41.         try:
  42.             return vector(map(lambda x,y: x*y, self,other))
  43.         except:
  44.             # other is a const
  45.             return vector(map(lambda x: x*other, self))
  46.  
  47.  
  48.     def __rmul__(self, other):
  49.         return (self*other)
  50.  
  51.  
  52.     def __div__(self, other):
  53.         """
  54.         Element by element division.
  55.         """
  56.         try:
  57.             return vector(map(lambda x,y: x/y, self, other))
  58.         except:
  59.             return vector(map(lambda x: x/other, self))
  60.  
  61.     def __rdiv__(self, other):
  62.         """
  63.         The same as __div__
  64.         """
  65.         try:
  66.             return vector(map(lambda x,y: x/y, other, self))
  67.         except:
  68.             # other is a const
  69.             return vector(map(lambda x: other/x, self))
  70.  
  71.         def size(self): return len(self)
  72.  
  73.     def conjugate(self):
  74.         return vector(map(lambda x: x.conjugate(), self))
  75.  
  76.         def ReIm(self):
  77.         """
  78.         Return the real and imaginary parts
  79.         """
  80.         return [
  81.             vector(map(lambda x: x.real, self)),
  82.             vector(map(lambda x: x.imag, self)),
  83.             ]
  84.     
  85.         def AbsArg(self):
  86.         """
  87.         Return modulus and phase parts
  88.         """
  89.         return [
  90.             vector(map(lambda x: abs(x), self)),
  91.             vector(map(lambda x: math.atan2(x.imag,x.real), self)),
  92.             ]
  93.  
  94.  
  95.     def out(self):
  96.         """
  97.         Prints out the vector.
  98.         """
  99.         print self
  100.  
  101. ###############################################################################
  102.  
  103.  
  104. def isVector(x):
  105.     """
  106.     Determines if the argument is a vector class object.
  107.     """
  108.     return hasattr(x,'__class__') and x.__class__ is vector
  109.  
  110. def zeros(n):
  111.     """
  112.     Returns a zero vector of length n.
  113.     """
  114.     return vector(map(lambda x: 0., range(n)))
  115.  
  116. def ones(n):
  117.     """
  118.     Returns a vector of length n with all ones.
  119.     """
  120.     return vector(map(lambda x: 1., range(n)))
  121.  
  122. def random(n, lmin=0.0, lmax=1.0):
  123.     """
  124.     Returns a random vector of length n.
  125.     """
  126.     import whrandom
  127.     new = vector([])
  128.     gen = whrandom.whrandom()
  129.     dl = lmax-lmin
  130.     return vector(map(lambda x: dl*gen.random(),
  131.                range(n)))
  132.     
  133. def dot(a, b):
  134.     """
  135.     dot product of two vectors.
  136.     """
  137.     try:
  138.     return reduce(lambda x, y: x+y, a*b, 0.)
  139.     except:
  140.     raise TypeError, 'vector::FAILURE in dot'
  141.     
  142.  
  143. def norm(a):
  144.     """
  145.     Computes the norm of vector a.
  146.     """
  147.     try:
  148.     return math.sqrt(abs(dot(a,a)))
  149.     except:
  150.     raise TypeError, 'vector::FAILURE in norm'
  151.  
  152. def sum(a):
  153.     """
  154.     Returns the sum of the elements of a.
  155.     """
  156.     try:
  157.     return reduce(lambda x, y: x+y, a, 0)
  158.     except:
  159.     raise TypeError, 'vector::FAILURE in sum'
  160.  
  161. # elementwise operations
  162.     
  163. def log10(a):
  164.     """
  165.     log10 of each element of a.
  166.     """
  167.     try:
  168.     return vector(map(math.log10, a))
  169.     except:
  170.     raise TypeError, 'vector::FAILURE in log10'
  171.  
  172. def log(a):
  173.     """
  174.     log of each element of a.
  175.     """
  176.     try:
  177.     return vector(map(math.log, a))
  178.     except:
  179.     raise TypeError, 'vector::FAILURE in log'
  180.         
  181. def exp(a):
  182.     """
  183.     Elementwise exponential.
  184.     """
  185.     try:
  186.     return vector(map(math.exp, a))
  187.     except:
  188.     raise TypeError, 'vector::FAILURE in exp'
  189.  
  190. def sin(a):
  191.     """
  192.     Elementwise sine.
  193.     """
  194.     try:
  195.     return vector(map(math.sin, a))
  196.     except:
  197.     raise TypeError, 'vector::FAILURE in sin'
  198.         
  199. def tan(a):
  200.     """
  201.     Elementwise tangent.
  202.     """
  203.     try:
  204.     return vector(map(math.tan, a))
  205.     except:
  206.     raise TypeError, 'vector::FAILURE in tan'
  207.         
  208. def cos(a):
  209.     """
  210.     Elementwise cosine.
  211.     """
  212.     try:
  213.     return vector(map(math.cos, a))
  214.     except:
  215.     raise TypeError, 'vector::FAILURE in cos'
  216.  
  217. def asin(a):
  218.     """
  219.     Elementwise inverse sine.
  220.     """
  221.     try:
  222.     return vector(map(math.asin, a))
  223.     except:
  224.     raise TypeError, 'vector::FAILURE in asin'
  225.  
  226. def atan(a):
  227.     """
  228.     Elementwise inverse tangent.
  229.     """    
  230.     try:
  231.     return vector(map(math.atan, a))
  232.     except:
  233.     raise TypeError, 'vector::FAILURE in atan'
  234.  
  235. def acos(a):
  236.     """
  237.     Elementwise inverse cosine.
  238.     """
  239.     try:
  240.     return vector(map(math.acos, a))
  241.     except:
  242.     raise TypeError, 'vector::FAILURE in acos'
  243.  
  244. def sqrt(a):
  245.     """
  246.     Elementwise sqrt.
  247.     """
  248.     try:
  249.     return vector(map(math.sqrt, a))
  250.     except:
  251.     raise TypeError, 'vector::FAILURE in sqrt'
  252.  
  253. def sinh(a):
  254.     """
  255.     Elementwise hyperbolic sine.
  256.     """
  257.     try:
  258.     return vector(map(math.sinh, a))
  259.     except:
  260.     raise TypeError, 'vector::FAILURE in sinh'
  261.  
  262. def tanh(a):
  263.     """
  264.     Elementwise hyperbolic tangent.
  265.     """
  266.     try:
  267.     return vector(map(math.tanh, a))
  268.     except:
  269.     raise TypeError, 'vector::FAILURE in tanh'
  270.  
  271. def cosh(a):
  272.     """
  273.     Elementwise hyperbolic cosine.
  274.     """
  275.     try:
  276.     return vector(map(math.cosh, a))
  277.     except:
  278.     raise TypeError, 'vector::FAILURE in cosh'
  279.  
  280.  
  281. def pow(a,b):
  282.     """
  283.     Takes the elements of a and raises them to the b-th power
  284.     """
  285.     try:
  286.         return vector(map(lambda x: x**b, a))
  287.     except:
  288.         try:
  289.         return vector(map(lambda x,y: x**y, a, b))
  290.     except:
  291.         raise TypeError, 'vector::FAILURE in pow'
  292.     
  293. def atan2(a,b):    
  294.     """
  295.     Arc tangent
  296.     
  297.     """
  298.     try:
  299.     return vector(map(math.atan2, a, b))
  300.     except:
  301.     raise TypeError, 'vector::FAILURE in atan2'
  302.     
  303.  
  304. ###############################################################################
  305. if __name__ == "__main__":
  306.  
  307.     print 'a = zeros(4)'
  308.     a = zeros(4)
  309.  
  310.     print 'a.__doc__=',a.__doc__
  311.  
  312.     print 'a[0] = 1.0'
  313.     a[0] = 1.0
  314.  
  315.     print 'a[3] = 3.0'
  316.     a[3] = 3.0
  317.  
  318.     print 'a[0]=', a[0]
  319.     print 'a[1]=', a[1]
  320.  
  321.     print 'len(a)=',len(a)
  322.     print 'a.size()=', a.size()
  323.             
  324.     b = vector([1, 2, 3, 4])
  325.     print 'a=', a
  326.     print 'b=', b
  327.  
  328.     print 'a+b'
  329.     c = a + b
  330.     c.out()
  331.  
  332.     print '-a'
  333.     c = -a
  334.     c.out()
  335.     a.out()
  336.  
  337.     print 'a-b'
  338.     c = a - b
  339.     c.out()
  340.  
  341.     print 'a*1.2'
  342.     c = a*1.2
  343.     c.out()
  344.  
  345.  
  346.     print '1.2*a'
  347.     c = 1.2*a
  348.     c.out()
  349.     print 'a=', a
  350.  
  351.     print 'dot(a,b) = ', dot(a,b)
  352.     print 'dot(b,a) = ', dot(b,a)
  353.  
  354.     print 'a*b'
  355.     c = a*b
  356.     c.out()
  357.     
  358.     print 'a/1.2'
  359.     c = a/1.2
  360.     c.out()
  361.  
  362.     print 'a[0:2]'
  363.     c = a[0:2]
  364.     c.out()
  365.  
  366.     print 'a[2:5] = [9.0, 4.0, 5.0]'
  367.     a[2:5] = [9.0, 4.0, 5.0]
  368.     a.out()
  369.  
  370.     print 'sqrt(a)=',sqrt(a)
  371.     print 'pow(a, 2*ones(len(a)))=',pow(a, 2*ones(len(a)))
  372.     print 'pow(a, 2)=',pow(a, 2*ones(len(a)))
  373.  
  374.     print 'ones(10)'
  375.     c = ones(10)
  376.     c.out()
  377.  
  378.     print 'zeros(10)'
  379.     c = zeros(10)
  380.     c.out()    
  381.  
  382.     print 'del a'
  383.     del a
  384.  
  385.     try:
  386.         a = random(11, 0., 2.)
  387.         a.out()
  388.  
  389.     except: pass
  390.  
  391.