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