C# Class CSharpRoboticsLib.Utility.Derivative

Single-Order derivative function.
Afficher le fichier Open project: shockwave4488/CSharpRoboticsLib Class Usage Examples

Méthodes publiques

Méthode Description
Derivative ( )

Creates a new derivative object with the initial value set to zero.

Derivative ( double initialCondition )

Creates a new Derivative object.

Get ( double x ) : double

Gets dx/dt

ReInitialize ( ) : void

resets the derivative to zero

ReInitialize ( double value ) : void

resets the derivative to the specified value

Method Details

Derivative() public méthode

Creates a new derivative object with the initial value set to zero.
public Derivative ( )

Derivative() public méthode

Creates a new Derivative object.
public Derivative ( double initialCondition )
initialCondition double Initial value to set x

Get() public méthode

Gets dx/dt
public Get ( double x ) : double
x double
Résultat double

ReInitialize() public méthode

resets the derivative to zero
public ReInitialize ( ) : void
Résultat void

ReInitialize() public méthode

resets the derivative to the specified value
public ReInitialize ( double value ) : void
value double value to reset to
Résultat void