get the value of the function, and its first & second derivative
Reimplemented from C2Function. Definition at line 533 of file C2Functions.py. 00533 : 00534 y, yp, ypp = self.fn.value_with_derivatives(x) 00535 ys=self.yscale 00536 return native(y*ys, yp*ys, ypp*ys) 00537
|