C# Class AK.F1.Timing.Model.Collections.DoubleCollectionModel

Inheritance: ModelBase
ファイルを表示 Open project: simoneb/ak-f1-timing Class Usage Examples

Private Properties

Property Type Description
ComputeDeltaType DeltaType
ResetStatistics void
Sqr double
UpdateCount void
UpdateCurrent void
UpdateDeltaType void
UpdateMaximum void
UpdateMean void
UpdateMinimum void
UpdateRange void
UpdateStandardDeviation void
UpdateStatistics void

Public Methods

Method Description
Add ( double item ) : void

Adds the specified item to this collection.

DoubleCollectionModel ( ) : System

Initialises a new instance of the DoubleCollectionModel class.

Reset ( ) : void

Resets this collection model.

Private Methods

Method Description
ComputeDeltaType ( double previousItem, double newItem ) : DeltaType
ResetStatistics ( ) : void
Sqr ( double d ) : double
UpdateCount ( ) : void
UpdateCurrent ( ) : void
UpdateDeltaType ( double item ) : void
UpdateMaximum ( double item ) : void
UpdateMean ( double item ) : void
UpdateMinimum ( double item ) : void
UpdateRange ( ) : void
UpdateStandardDeviation ( double item ) : void
UpdateStatistics ( double item ) : void

Method Details

Add() public method

Adds the specified item to this collection.
/// When when is not a number. ///
public Add ( double item ) : void
item double The item to add to this collection.
return void

DoubleCollectionModel() public method

Initialises a new instance of the DoubleCollectionModel class.
public DoubleCollectionModel ( ) : System
return System

Reset() public method

Resets this collection model.
public Reset ( ) : void
return void