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
left
Vector128<double>The vector from which
right
will be subtracted (将被减去right
的向量).right
Vector128<double>The vector to subtract from
left
(要从left
减去的向量).
Returns
- See Also