C# Class CSharpRoboticsLib.Utility.Integral

Numeric Time-based Integration
Mostra file Open project: shockwave4488/CSharpRoboticsLib Class Usage Examples

Public Methods

Method Description
Get ( ) : double

Gets the value of the integral

Get ( double x ) : double

Get the value of the integral

Integral ( )

New Integral.

ReInitialize ( ) : void

Reinitialize the integral to zero.

ReInitialize ( double value ) : void

Reinitialize the integral to the specified value.

Method Details

Get() public method

Gets the value of the integral
public Get ( ) : double
return double

Get() public method

Get the value of the integral
public Get ( double x ) : double
x double Value to add to the integral
return double

Integral() public method

New Integral.
public Integral ( )

ReInitialize() public method

Reinitialize the integral to zero.
public ReInitialize ( ) : void
return void

ReInitialize() public method

Reinitialize the integral to the specified value.
public ReInitialize ( double value ) : void
value double value to set the integral to
return void