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
- See Also