Table of Contents

Method Negate

Namespace
Zyl.VectorTraits.Impl.AVector128
Assembly
VectorTraits.dll

Negate(Vector128<double>)

Computes the negate of a vector (计算向量的相反数). Mnemonic: rt[i] := -vector[i].

public override Vector128<double> Negate(Vector128<double> value)

Parameters

value Vector128<double>

Returns

Vector128<double>

A vector whose elements are the negate of the elements in vector (一个向量,其元素是 vector 中各元素的相反数).

See Also

Negate(Vector128<long>)

Computes the negate of a vector (计算向量的相反数). Mnemonic: rt[i] := -vector[i].

public override Vector128<long> Negate(Vector128<long> value)

Parameters

value Vector128<long>

Returns

Vector128<long>

A vector whose elements are the negate of the elements in vector (一个向量,其元素是 vector 中各元素的相反数).

See Also