Method YIsSubnormal
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YIsSubnormal(Vector256<float>)
Determines if a element is subnormal (确定元素是否为次正规数).
Mnemonic: rt[i] := to_mask(IsSubnormal(value[i]))
.
public static Vector256<int> YIsSubnormal(Vector256<float> value)
Parameters
Returns
- Vector256<int>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is subnormal (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为次正规数).
- See Also
YIsSubnormal(Vector256<double>)
Determines if a element is subnormal (确定元素是否为次正规数).
Mnemonic: rt[i] := to_mask(IsSubnormal(value[i]))
.
public static Vector256<long> YIsSubnormal(Vector256<double> value)
Parameters
Returns
- Vector256<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is subnormal (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为次正规数).
- See Also