Returns a function that numerically evaluates the definite integral of a function
between the two function arguments.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Func<double, double, double> GetIntegrator(
this Func<double, double> integrand
)
<ExtensionAttribute>
Public Shared Function GetIntegrator (
integrand As Func(Of Double, Double)
) As Func(Of Double, Double, Double)
public:
[ExtensionAttribute]
static Func<double, double, double>^ GetIntegrator(
Func<double, double>^ integrand
)
[<ExtensionAttribute>]
static member GetIntegrator :
integrand : Func<float, float> -> Func<float, float, float>
Parameters
- integrand
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable
that specifies the function to integrate.
Return Value
Type:
FuncDouble,
Double,
DoubleA delegate that represents a function of two variables that returns the definite integral of
integrand from its first argument to its second argument.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FuncDouble,
Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Reference