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