Method YSign
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YSign(Vector512<float>)
Determine the sign of each element (判断各个元素的符号).
Mnemonic: rt[i] := sign(value[i])
.
public static Vector512<int> YSign(Vector512<float> value)
Parameters
Returns
- Vector512<int>
A vector whose elements depend on the sign of the corresponding element of
value
: Returns 1 if the value is positive, 0 if the value is zero, and -1 if the value is negative (一个向量,其元素取决于value的对应元素的符号情况: 值为正数时返回1, 值为0时返回0, 值为负数时返回-1).
- See Also
YSign(Vector512<double>)
Determine the sign of each element (判断各个元素的符号).
Mnemonic: rt[i] := sign(value[i])
.
public static Vector512<long> YSign(Vector512<double> value)
Parameters
Returns
- Vector512<long>
A vector whose elements depend on the sign of the corresponding element of
value
: Returns 1 if the value is positive, 0 if the value is zero, and -1 if the value is negative (一个向量,其元素取决于value的对应元素的符号情况: 值为正数时返回1, 值为0时返回0, 值为负数时返回-1).
- See Also
YSign(Vector512<sbyte>)
Determine the sign of each element (判断各个元素的符号).
Mnemonic: rt[i] := sign(value[i])
.
[CLSCompliant(false)]
public static Vector512<sbyte> YSign(Vector512<sbyte> value)
Parameters
Returns
- Vector512<sbyte>
A vector whose elements depend on the sign of the corresponding element of
value
: Returns 1 if the value is positive, 0 if the value is zero, and -1 if the value is negative (一个向量,其元素取决于value的对应元素的符号情况: 值为正数时返回1, 值为0时返回0, 值为负数时返回-1).
- See Also
YSign(Vector512<short>)
Determine the sign of each element (判断各个元素的符号).
Mnemonic: rt[i] := sign(value[i])
.
public static Vector512<short> YSign(Vector512<short> value)
Parameters
Returns
- Vector512<short>
A vector whose elements depend on the sign of the corresponding element of
value
: Returns 1 if the value is positive, 0 if the value is zero, and -1 if the value is negative (一个向量,其元素取决于value的对应元素的符号情况: 值为正数时返回1, 值为0时返回0, 值为负数时返回-1).
- See Also
YSign(Vector512<int>)
Determine the sign of each element (判断各个元素的符号).
Mnemonic: rt[i] := sign(value[i])
.
public static Vector512<int> YSign(Vector512<int> value)
Parameters
Returns
- Vector512<int>
A vector whose elements depend on the sign of the corresponding element of
value
: Returns 1 if the value is positive, 0 if the value is zero, and -1 if the value is negative (一个向量,其元素取决于value的对应元素的符号情况: 值为正数时返回1, 值为0时返回0, 值为负数时返回-1).
- See Also
YSign(Vector512<long>)
Determine the sign of each element (判断各个元素的符号).
Mnemonic: rt[i] := sign(value[i])
.
public static Vector512<long> YSign(Vector512<long> value)
Parameters
Returns
- Vector512<long>
A vector whose elements depend on the sign of the corresponding element of
value
: Returns 1 if the value is positive, 0 if the value is zero, and -1 if the value is negative (一个向量,其元素取决于value的对应元素的符号情况: 值为正数时返回1, 值为0时返回0, 值为负数时返回-1).
- See Also