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