def reset (   self,
  x0 = None,
  slope = None,
  y0 = None 
)

reset the parameters of the function

Parameters:
x0 the x offset at which f(x) = y0, None if not reset
slope the slope, None if not reset
y0 the value of the function at x0, None if not reset

Definition at line 672 of file C2Functions.py.

00672                                                  :
00673         "reset the x0, slope or intercept to a new value"
00674         if slope is not None:
00675             self.slope=slope
00676         if y0 is not None:
00677             self.y0=y0
00678         if x0 is not None:
00679             self.x0=x0
00680             
    def value_with_derivatives(self, x):


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