Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
Compute ( ) : bool |
Computes the area of the function under the selected Range. The computed value will be available at this object's Area.
|
|
Integrate ( double>.Func |
Computes the area under the integral for the given function, in the given integration interval, using a Monte Carlo integration algorithm.
|
|
Integrate ( double>.Func |
Computes the area of the function under the selected Range. The computed value will be available at this object's Area.
|
|
Integrate ( double>.Func |
Computes the area of the function under the selected Range. The computed value will be available at this object's Area.
|
|
MonteCarloIntegration ( int parameters ) : System |
Constructs a new
|
|
MonteCarloIntegration ( int parameters, double>.Func |
Constructs a new
|
|
Reset ( ) : void |
Manually resets the previously computed area and error estimates, so the integral can be computed from scratch without reusing previous computations.
|
public static Integrate ( double>.Func |
||
func | double>.Func | The unidimensional function whose integral should be computed. |
a | double | The beginning of the integration interval. |
b | double | The ending of the integration interval. |
samples | int | The number of points that should be sampled. |
return | double |
public static Integrate ( double>.Func |
||
func | double>.Func | |
a | double | |
b | double | |
return | double |
public static Integrate ( double>.Func |
||
func | double>.Func | |
a | double | |
b | double | |
samples | int | |
return | double |
public MonteCarloIntegration ( int parameters ) : System | ||
parameters | int | The number of parameters expected by the integrand. |
return | System |
public MonteCarloIntegration ( int parameters, double>.Func |
||
parameters | int | The number of parameters expected by the |
function | double>.Func | The function to be integrated. |
return | System |