Table of Contents

Method Add

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

Add(Vector128<double>, Vector128<double>)

Adds two vectors to compute their sum (将两个向量相加来计算它们的和). Mnemonic: rt[i] := left[i] + right[i].

public override Vector128<double> Add(Vector128<double> left, Vector128<double> right)

Parameters

left Vector128<double>

The vector to add with right (将会与right进行相加的向量).

right Vector128<double>

The vector to add with left (将会与left进行相加的向量).

Returns

Vector128<double>

The sum of left and right (leftright的和).

See Also