get the value of the function, and its first & second derivative
Reimplemented from C2Function. Definition at line 716 of file C2Functions.py. 00716 : 00717 dx=x-self.x0 00718 return native(self.a*dx*dx+self.b*dx+self.c, 2*self.a*dx+self.b, 2*self.a) 00719 ##
|