Method Subtract
- Namespace
- Zyl.VectorTraits.Impl.AVector128
- Assembly
- VectorTraits.dll
Subtract(Vector128<double>, Vector128<double>)
Subtracts two vectors to compute their difference (将两个向量相减来计算它们的差).
Mnemonic: rt[i] := left[i] - right[i].
public override Vector128<double> Subtract(Vector128<double> left, Vector128<double> right)
Parameters
leftVector128<double>The vector from which
rightwill be subtracted (将被减去right的向量).rightVector128<double>The vector to subtract from
left(要从left减去的向量).
Returns
- See Also