def __init__ (   self,
  x0 = 0.0,
  a = 1.0,
  b = 0.0,
  c = 0.0 
)

construct the function

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

Definition at line 694 of file C2Functions.py.

00694                                                    :
00695         C2Function.__init__(self)
00696         self.x0, self.a, self.b, self.c = x0, a, b, c
00697         self.name="(%g*(x-x0)^2 + %g*(x-x0) + %g, x0=%g)" % (a, b, c, x0)
00698         
    ##


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