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 Romberg's method.
|
|
Integrate ( double>.Func |
Computes the area under the integral for the given function, in the given integration interval, using Romberg's method.
|
|
RombergMethod ( ) : System |
Constructs a new
|
|
RombergMethod ( double>.Func |
Constructs a new
|
|
RombergMethod ( double>.Func |
Constructs a new
|
|
RombergMethod ( int steps ) : System |
Constructs a new
|
|
RombergMethod ( int steps, double>.Func |
Constructs a new
|
|
RombergMethod ( int steps, double>.Func |
Constructs a new
|
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. |
return | double |
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. |
steps | int | The number of steps used in Romberg's method. Default is 6. |
return | double |
public RombergMethod ( double>.Func |
||
function | double>.Func | The unidimensional function whose integral should be computed. |
return | System |
public RombergMethod ( double>.Func |
||
function | 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. |
return | System |
public RombergMethod ( int steps ) : System | ||
steps | int | The number of steps used in Romberg's method. Default is 6. |
return | System |
public RombergMethod ( int steps, double>.Func |
||
steps | int | The number of steps used in Romberg's method. Default is 6. |
function | double>.Func | The unidimensional function whose integral should be computed. |
return | System |
public RombergMethod ( int steps, double>.Func |
||
steps | int | The number of steps used in Romberg's method. Default is 6. |
function | 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. |
return | System |