def __pow__ (   self,
  right 
)

Python operator to return a function self ^right.

Note:
This includes an optimization for numerical powers.
Parameters:
right the exponent
Returns:
the C2Function a^b

Definition at line 297 of file C2Functions.py.

00297                             :
00298         "a**b returns a new C2Function which represents the power law, with an optimization for numerical powers"
00299         return C2Power(self, right)
00300 
    ##


Generated on Wed Nov 21 10:18:31 2007 for analysis by  doxygen 1.5.4