SumOfAbsoluteDifferenceAccumulator<T> Structure

Represents an accumulator for the sum of absolute difference or one norm of a pair of sequences.

Definition

Namespace: Numerics.NET.DataAnalysis.Accumulators
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
C#
public struct SumOfAbsoluteDifferenceAccumulator<T> : IBinaryAccumulator<T, T>
Inheritance
Object  →  ValueType  →  SumOfAbsoluteDifferenceAccumulator<T>
Implements
IBinaryAccumulator<T, T>

Type Parameters

T
The type of the elements of the sequence.

Properties

HasValue Gets whether the accumulator has received enough data to compute a value.
MeanAbsoluteError Gets the current Mean Absolute Error (MAE) between the two sequences.
SumOfAbsoluteDifference Gets the current distance between the two sequences.

Methods

Add Updates the accumulator with the specified value.
AddMissing Updates the accumulator with a missing value.
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 Updates the accumulator by removing the specified value.
RemoveMissing Updates the accumulator by removing a missing value.
Reset Resets the accumulator to its initial state.
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)

See Also