Vector<T>.GetMissingValueMask Method

Gets a boolean array that specifies the locations of missing values.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
C#
public virtual ArraySlice<bool> GetMissingValueMask()

Return Value

ArraySlice<Boolean>
An array of the same size as this instance whose elements are false when the element is missing and true otherwise.

Remarks

The returned storage is independent of the vector.

See Also