Method YIsPositive
- Namespace
- Zyl.VectorTraits.Impl.AVector
- Assembly
- VectorTraits.dll
YIsPositive(Vector<double>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public override Vector<long> YIsPositive(Vector<double> value)
Parameters
Returns
- Vector<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also
YIsPositive(Vector<long>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public override Vector<long> YIsPositive(Vector<long> value)
Parameters
Returns
- Vector<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also