def reset (   self,
  x0 = None,
  a = None,
  b = None,
  c = None 
)

reset the parameters of the function

Parameters:
x0 the x offset at which f(x) = c, None if not reset
a the coefficient of (x - x0)**2, None if not reset
b the coefficient of (x - x0), None if not reset
c the value of the function at x0, None if not reset

Definition at line 705 of file C2Functions.py.

00705                                                     :
00706         "reset the parameters to new values"
00707         if x0 is not None:
00708             self.x0=x0
00709         if a is not None:
00710             self.a=a
00711         if b is not None:
00712             self.b=b
00713         if b is not None:
00714             self.c=c
00715 
    def value_with_derivatives(self, x):


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