C# 클래스 CSharpRoboticsLib.Utility.Derivative

Single-Order derivative function.
파일 보기 프로젝트 열기: shockwave4488/CSharpRoboticsLib 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

Derivative() 공개 메소드

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

Derivative() 공개 메소드

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

Get() 공개 메소드

Gets dx/dt
public Get ( double x ) : double
x double
리턴 double

ReInitialize() 공개 메소드

resets the derivative to zero
public ReInitialize ( ) : void
리턴 void

ReInitialize() 공개 메소드

resets the derivative to the specified value
public ReInitialize ( double value ) : void
value double value to reset to
리턴 void