Table of Contents

Method YSign

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YSign(Vector<float>)

Determine the sign of each element (判断各个元素的符号). Mnemonic: rt[i] := sign(value[i]).

public static Vector<int> YSign(Vector<float> value)

Parameters

value Vector<float>

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

Returns

Vector<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(Vector<double>)

Determine the sign of each element (判断各个元素的符号). Mnemonic: rt[i] := sign(value[i]).

public static Vector<long> YSign(Vector<double> value)

Parameters

value Vector<double>

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

Returns

Vector<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(Vector<sbyte>)

Determine the sign of each element (判断各个元素的符号). Mnemonic: rt[i] := sign(value[i]).

[CLSCompliant(false)]
public static Vector<sbyte> YSign(Vector<sbyte> value)

Parameters

value Vector<sbyte>

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

Returns

Vector<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(Vector<short>)

Determine the sign of each element (判断各个元素的符号). Mnemonic: rt[i] := sign(value[i]).

public static Vector<short> YSign(Vector<short> value)

Parameters

value Vector<short>

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

Returns

Vector<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(Vector<int>)

Determine the sign of each element (判断各个元素的符号). Mnemonic: rt[i] := sign(value[i]).

public static Vector<int> YSign(Vector<int> value)

Parameters

value Vector<int>

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

Returns

Vector<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(Vector<long>)

Determine the sign of each element (判断各个元素的符号). Mnemonic: rt[i] := sign(value[i]).

public static Vector<long> YSign(Vector<long> value)

Parameters

value Vector<long>

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

Returns

Vector<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