Method Divide
- Namespace
- Zyl.VectorTraits.Impl.AVector256
- Assembly
- VectorTraits.dll
Divide(Vector256<float>, Vector256<float>)
Divides two vectors to compute their quotient (将两个向量相除来计算它们的商).
Mnemonic: rt[i] := left[i] / right[i].
public static Vector256<float> Divide(Vector256<float> left, Vector256<float> right)
Parameters
leftVector256<float>The vector to divided with
right(将会与right进行相除的向量).rightVector256<float>The vector that will divide left
left(将会与left进行相除的向量).
Returns
- See Also
Divide(Vector256<double>, Vector256<double>)
Divides two vectors to compute their quotient (将两个向量相除来计算它们的商).
Mnemonic: rt[i] := left[i] / right[i].
public static Vector256<double> Divide(Vector256<double> left, Vector256<double> right)
Parameters
leftVector256<double>The vector to divided with
right(将会与right进行相除的向量).rightVector256<double>The vector that will divide left
left(将会与left进行相除的向量).
Returns
- See Also