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 static Vector<double> YIsNotEquals(Vector<double> left, Vector<double> right)
Parameters
leftVector<double>The vector to compare with
right(将会与right进行比较的向量).rightVector<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
leftandrightwere not equal (一个向量,其元素是全位为1或0,取决于left和right的对应元素中是否不相等).
- See Also
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 static Vector<long> YIsNotEquals(Vector<long> left, Vector<long> right)
Parameters
leftVector<long>The vector to compare with
right(将会与right进行比较的向量).rightVector<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
leftandrightwere not equal (一个向量,其元素是全位为1或0,取决于left和right的对应元素中是否不相等).
- See Also
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 static Vector<ulong> YIsNotEquals(Vector<ulong> left, Vector<ulong> right)
Parameters
leftVector<ulong>The vector to compare with
right(将会与right进行比较的向量).rightVector<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
leftandrightwere not equal (一个向量,其元素是全位为1或0,取决于left和right的对应元素中是否不相等).
- See Also