MissingValueRepresentation Enumeration

Enumerates the possibilities for representing missing values in data structures.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.2
C#
public enum MissingValueRepresentation

Remarks

Options include no representation, a specific value, a boolean mask, or a negative level index.

Members

None0 Missing values are not represented in vectors or are ignored.
ByValue1 Missing values are represented by a specific value.
LogicalMask2 Missing values are represented by a false value in a corresponding boolean mask array.
IndexMask3 Missing values are represented by a negative index in a corresponding integer index array.

See Also