C# 클래스 CSharpRoboticsLib.Utility.Integral

Numeric Time-based Integration
파일 보기 프로젝트 열기: shockwave4488/CSharpRoboticsLib 1 사용 예제들

공개 메소드들

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

메소드 상세

Get() 공개 메소드

Gets the value of the integral
public Get ( ) : double
리턴 double

Get() 공개 메소드

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

Integral() 공개 메소드

New Integral.
public Integral ( )

ReInitialize() 공개 메소드

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

ReInitialize() 공개 메소드

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