HigherMomentsAccumulator<T> Structure

Represents an accumulator that computes up to the fourth moments of a sequence.

Definition

Namespace: Numerics.NET.DataAnalysis.Accumulators
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public struct HigherMomentsAccumulator<T> : IAccumulator<T>
Inheritance
Object  →  ValueType  →  HigherMomentsAccumulator<T>
Implements
IAccumulator<T>

Type Parameters

T
The type of the input and output.

Properties

Count Gets the accumulated number of non-missing values.
FourthCentralMoment Gets the accumulated fourth central moment of the sequence.
HasValue 
Kurtosis Gets the accumulated kurtosis of the sequence.
Mean Gets the accumulated mean of the sequence.
SecondCentralMoment Gets the accumulated second central moment of the sequence.
Skewness Gets the accumulated skewness of the sequence.
ThirdCentralMoment Gets the accumulated third central moment of the sequence.

Methods

Add 
AddMissing 
EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
Remove 
RemoveMissing 
Reset 
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)

See Also