reset the parameters of the function
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):
|