C# Class CSharpRoboticsLib.Utility.Integral

Numeric Time-based Integration
Afficher le fichier Open project: shockwave4488/CSharpRoboticsLib Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Gets the value of the integral
public Get ( ) : double
Résultat double

Get() public méthode

Get the value of the integral
public Get ( double x ) : double
x double Value to add to the integral
Résultat double

Integral() public méthode

New Integral.
public Integral ( )

ReInitialize() public méthode

Reinitialize the integral to zero.
public ReInitialize ( ) : void
Résultat void

ReInitialize() public méthode

Reinitialize the integral to the specified value.
public ReInitialize ( double value ) : void
value double value to set the integral to
Résultat void