Method YGroup2ZipLow_AlignRight
- Namespace
- Zyl.VectorTraits.Impl.AVector128
- Assembly
- VectorTraits.dll
YGroup2ZipLow_AlignRight(Vector128<double>, Vector128<double>)
Interleave 2 vectors into 2-element groups and returns the data in the low position. (将2个向量交织为2-元素组, 并返回低位置的数据).
Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] )
, i2 := i/2
.
public static Vector128<double> YGroup2ZipLow_AlignRight(Vector128<double> x, Vector128<double> y)
Parameters
x
Vector128<double>A vector consisting purely of X-components (纯由X分量所组成的向量).
y
Vector128<double>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also
YGroup2ZipLow_AlignRight(Vector128<long>, Vector128<long>)
Interleave 2 vectors into 2-element groups and returns the data in the low position. (将2个向量交织为2-元素组, 并返回低位置的数据).
Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] )
, i2 := i/2
.
public static Vector128<long> YGroup2ZipLow_AlignRight(Vector128<long> x, Vector128<long> y)
Parameters
x
Vector128<long>A vector consisting purely of X-components (纯由X分量所组成的向量).
y
Vector128<long>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also
YGroup2ZipLow_AlignRight(Vector128<ulong>, Vector128<ulong>)
Interleave 2 vectors into 2-element groups and returns the data in the low position. (将2个向量交织为2-元素组, 并返回低位置的数据).
Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] )
, i2 := i/2
.
[CLSCompliant(false)]
public static Vector128<ulong> YGroup2ZipLow_AlignRight(Vector128<ulong> x, Vector128<ulong> y)
Parameters
x
Vector128<ulong>A vector consisting purely of X-components (纯由X分量所组成的向量).
y
Vector128<ulong>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also