Table of Contents

Method Divide

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

Divide(Vector128<float>, Vector128<float>)

Divides two vectors to compute their quotient (将两个向量相除来计算它们的商). Mnemonic: rt[i] := left[i] / right[i].

public static Vector128<float> Divide(Vector128<float> left, Vector128<float> right)

Parameters

left Vector128<float>

The vector to divided with right (将会与right进行相除的向量).

right Vector128<float>

The vector that will divide left left (将会与left进行相除的向量).

Returns

Vector128<float>

The quotient of left divided right (left 除以 right的商).

See Also

Divide(Vector128<double>, Vector128<double>)

Divides two vectors to compute their quotient (将两个向量相除来计算它们的商). Mnemonic: rt[i] := left[i] / right[i].

public static Vector128<double> Divide(Vector128<double> left, Vector128<double> right)

Parameters

left Vector128<double>

The vector to divided with right (将会与right进行相除的向量).

right Vector128<double>

The vector that will divide left left (将会与left进行相除的向量).

Returns

Vector128<double>

The quotient of left divided right (left 除以 right的商).

See Also