Method YMaxNumber
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YMaxNumber(Vector128<float>, Vector128<float>)
Computes the maximum number of two vectors on a per-element basis (在每个元素的基础上计算两个向量的最大数值). The maxNumber method matches the IEEE 754:2019 maximumNumber function. This requires NaN
inputs to not be propagated back to the caller and for -0.0
to be treated as less than +0.0
(maxNumber方法与 IEEE 754:2019 maximumNumber 函数匹配。 这要求 NaN
输入不传播回调用方,且 -0.0
被视为小于 +0.0
).
Mnemonic: rt[i] := maxNumber(left[i], right[i])
.
public static Vector128<float> YMaxNumber(Vector128<float> left, Vector128<float> right)
Parameters
left
Vector128<float>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector128<float>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector128<float>
A vector whose elements are the maximum number of the corresponding elements in
left
andright
(一个向量,其元素是left
和right
的相应元素的最大数值).
- See Also
YMaxNumber(Vector128<double>, Vector128<double>)
Computes the maximum number of two vectors on a per-element basis (在每个元素的基础上计算两个向量的最大数值). The maxNumber method matches the IEEE 754:2019 maximumNumber function. This requires NaN
inputs to not be propagated back to the caller and for -0.0
to be treated as less than +0.0
(maxNumber方法与 IEEE 754:2019 maximumNumber 函数匹配。 这要求 NaN
输入不传播回调用方,且 -0.0
被视为小于 +0.0
).
Mnemonic: rt[i] := maxNumber(left[i], right[i])
.
public static Vector128<double> YMaxNumber(Vector128<double> left, Vector128<double> right)
Parameters
left
Vector128<double>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector128<double>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector128<double>
A vector whose elements are the maximum number of the corresponding elements in
left
andright
(一个向量,其元素是left
和right
的相应元素的最大数值).
- See Also