Table of Contents

Method Abs

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

Abs(Vector512<float>)

Computes the absolute value of each element in a vector (计算向量中每个元素的绝对值). Mnemonic: rt[i] := abs(vector[i]).

public static Vector512<float> Abs(Vector512<float> value)

Parameters

value Vector512<float>

Returns

Vector512<float>

A vector whose elements are the absolute value of the elements in vector (一个向量,其元素是 vector 中各元素的绝对值).

See Also
Abs<T>(Vector512<T>)

Abs(Vector512<double>)

Computes the absolute value of each element in a vector (计算向量中每个元素的绝对值). Mnemonic: rt[i] := abs(vector[i]).

public static Vector512<double> Abs(Vector512<double> value)

Parameters

value Vector512<double>

Returns

Vector512<double>

A vector whose elements are the absolute value of the elements in vector (一个向量,其元素是 vector 中各元素的绝对值).

See Also
Abs<T>(Vector512<T>)

Abs(Vector512<sbyte>)

Computes the absolute value of each element in a vector (计算向量中每个元素的绝对值). Mnemonic: rt[i] := abs(vector[i]).

[CLSCompliant(false)]
public static Vector512<sbyte> Abs(Vector512<sbyte> value)

Parameters

value Vector512<sbyte>

Returns

Vector512<sbyte>

A vector whose elements are the absolute value of the elements in vector (一个向量,其元素是 vector 中各元素的绝对值).

See Also
Abs<T>(Vector512<T>)

Abs(Vector512<short>)

Computes the absolute value of each element in a vector (计算向量中每个元素的绝对值). Mnemonic: rt[i] := abs(vector[i]).

public static Vector512<short> Abs(Vector512<short> value)

Parameters

value Vector512<short>

Returns

Vector512<short>

A vector whose elements are the absolute value of the elements in vector (一个向量,其元素是 vector 中各元素的绝对值).

See Also
Abs<T>(Vector512<T>)

Abs(Vector512<int>)

Computes the absolute value of each element in a vector (计算向量中每个元素的绝对值). Mnemonic: rt[i] := abs(vector[i]).

public static Vector512<int> Abs(Vector512<int> value)

Parameters

value Vector512<int>

Returns

Vector512<int>

A vector whose elements are the absolute value of the elements in vector (一个向量,其元素是 vector 中各元素的绝对值).

See Also
Abs<T>(Vector512<T>)

Abs(Vector512<long>)

Computes the absolute value of each element in a vector (计算向量中每个元素的绝对值). Mnemonic: rt[i] := abs(vector[i]).

public static Vector512<long> Abs(Vector512<long> value)

Parameters

value Vector512<long>

Returns

Vector512<long>

A vector whose elements are the absolute value of the elements in vector (一个向量,其元素是 vector 中各元素的绝对值).

See Also
Abs<T>(Vector512<T>)