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 static Vector128<double> Add(Vector128<double> left, Vector128<double> right)
Parameters
leftVector128<double>The vector to add with
right(将会与right进行相加的向量).rightVector128<double>The vector to add with
left(将会与left进行相加的向量).
Returns
- See Also