Vector.Not Method

Computes the logical negation of a boolean vector.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Vector<bool> Not(
	Vector<bool> operand
)

Parameters

operand  Vector<Boolean>
A boolean vector.

Return Value

Vector<Boolean>
A vector whose elements are the logical negation of the corresponding elements of operand.

Exceptions

ArgumentNullException

operand is null.

See Also