Table of Contents

Method YIsInfinity

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YIsInfinity(Vector512<float>)

Determines if a element is infinite (确定元素是否为无穷大). Mnemonic: rt[i] := to_mask(isInfinity(value[i])).

public static Vector512<int> YIsInfinity(Vector512<float> value)

Parameters

value Vector512<float>

The vectors that will be checked (将进行检查的向量).

Returns

Vector512<int>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in value were is infinite (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为无穷大).

See Also

YIsInfinity(Vector512<double>)

Determines if a element is infinite (确定元素是否为无穷大). Mnemonic: rt[i] := to_mask(isInfinity(value[i])).

public static Vector512<long> YIsInfinity(Vector512<double> value)

Parameters

value Vector512<double>

The vectors that will be checked (将进行检查的向量).

Returns

Vector512<long>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in value were is infinite (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为无穷大).

See Also