| 
            
              InfiniteAdaptiveGaussKronrodIntegrate Method (FuncDouble, Double)
             | 
          
        
         
              Computes the area under the integral for the given function, in the given 
              integration interval, using the Infinite Adaptive Gauss Kronrod algorithm.
            
 
    Namespace: 
   Accord.Math.Integration
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic static double Integrate(
	Func<double, double> f
)
Public Shared Function Integrate ( 
	f As Func(Of Double, Double)
) As Double
 Request Example
		View SourceParameters
- f
 - Type: SystemFuncDouble, Double
The unidimensional function whose integral should be computed. 
Return Value
Type: 
DoubleThe integral's value in the current interval.
See Also