Method YIsNegativeZero
- Namespace
 - Zyl.VectorTraits.Impl.AVector512
 
- Assembly
 - VectorTraits.dll
 
YIsNegativeZero(Vector512<float>)
Determines if a element represents a negative zero (确定元素是否为负零).
Mnemonic: rt[i] := to_mask(isNegativeZero(value[i])).
public virtual Vector512<int> YIsNegativeZero(Vector512<float> value)
Parameters
Returns
- Vector512<int>
 A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
valuewere is finite (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为有限的).
- See Also
 
YIsNegativeZero(Vector512<double>)
Determines if a element represents a negative zero (确定元素是否为负零).
Mnemonic: rt[i] := to_mask(isNegativeZero(value[i])).
public virtual Vector512<long> YIsNegativeZero(Vector512<double> value)
Parameters
Returns
- Vector512<long>
 A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
valuewere is finite (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为有限的).
- See Also