Table of Contents

Method YIsNotEquals

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

YIsNotEquals(Vector<double>, Vector<double>)

Compares two vectors to determine if they are not equal on a per-element basis (比较两个向量,确定它们每个元素是否不相等). Mnemonic: rt[i] := to_mask(left[i] != right[i]).

public override Vector<double> YIsNotEquals(Vector<double> left, Vector<double> right)

Parameters

left Vector<double>

The vector to compare with right (将会与right进行比较的向量).

right Vector<double>

The vector to compare with left (将会与left进行比较的向量).

Returns

Vector<double>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and rightwere not equal (一个向量,其元素是全位为1或0,取决于leftright的对应元素中是否不相等).

See Also
Equals<T>(Vector<T>, Vector<T>)

YIsNotEquals(Vector<long>, Vector<long>)

Compares two vectors to determine if they are not equal on a per-element basis (比较两个向量,确定它们每个元素是否不相等). Mnemonic: rt[i] := to_mask(left[i] != right[i]).

public override Vector<long> YIsNotEquals(Vector<long> left, Vector<long> right)

Parameters

left Vector<long>

The vector to compare with right (将会与right进行比较的向量).

right Vector<long>

The vector to compare with left (将会与left进行比较的向量).

Returns

Vector<long>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and rightwere not equal (一个向量,其元素是全位为1或0,取决于leftright的对应元素中是否不相等).

See Also
Equals<T>(Vector<T>, Vector<T>)

YIsNotEquals(Vector<ulong>, Vector<ulong>)

Compares two vectors to determine if they are not equal on a per-element basis (比较两个向量,确定它们每个元素是否不相等). Mnemonic: rt[i] := to_mask(left[i] != right[i]).

[CLSCompliant(false)]
public override Vector<ulong> YIsNotEquals(Vector<ulong> left, Vector<ulong> right)

Parameters

left Vector<ulong>

The vector to compare with right (将会与right进行比较的向量).

right Vector<ulong>

The vector to compare with left (将会与left进行比较的向量).

Returns

Vector<ulong>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and rightwere not equal (一个向量,其元素是全位为1或0,取决于leftright的对应元素中是否不相等).

See Also
Equals<T>(Vector<T>, Vector<T>)