def integral (   self,
  xmin,
  xmax,
  args 
)

return the definite integral from xmin to xmax of this function using our sampling_grid for hints.

Parameters:
xmin the lower bound
xmax the upper bound
args see partial_integrals() for meaning of these arguments
Returns:
the integral

Definition at line 484 of file C2Functions.py.

00484                                           :
00485         "carry out integration using our sampling grid"
00486         grid=self.GetSamplingGrid(xmin, xmax)
00487         return sum(self.partial_integrals(grid, **args))
00488 
    ##


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