Method YGroup2ZipLow
- Namespace
- Zyl.VectorTraits.Impl.AVector
- Assembly
- VectorTraits.dll
YGroup2ZipLow(Vector<double>, Vector<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 override Vector<double> YGroup2ZipLow(Vector<double> x, Vector<double> y)
Parameters
xVector<double>A vector consisting purely of X-components (纯由X分量所组成的向量).
yVector<double>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also
YGroup2ZipLow(Vector<long>, Vector<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 override Vector<long> YGroup2ZipLow(Vector<long> x, Vector<long> y)
Parameters
xVector<long>A vector consisting purely of X-components (纯由X分量所组成的向量).
yVector<long>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also
YGroup2ZipLow(Vector<ulong>, Vector<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 override Vector<ulong> YGroup2ZipLow(Vector<ulong> x, Vector<ulong> y)
Parameters
xVector<ulong>A vector consisting purely of X-components (纯由X分量所组成的向量).
yVector<ulong>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also
YGroup2ZipLow(Vector<ExInt128>, Vector<ExInt128>)
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 override Vector<ExInt128> YGroup2ZipLow(Vector<ExInt128> x, Vector<ExInt128> y)
Parameters
xVector<ExInt128>A vector consisting purely of X-components (纯由X分量所组成的向量).
yVector<ExInt128>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also
YGroup2ZipLow(Vector<ExUInt128>, Vector<ExUInt128>)
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 override Vector<ExUInt128> YGroup2ZipLow(Vector<ExUInt128> x, Vector<ExUInt128> y)
Parameters
xVector<ExUInt128>A vector consisting purely of X-components (纯由X分量所组成的向量).
yVector<ExUInt128>A vector consisting purely of Y-components (纯由Y分量所组成的向量).
Returns
- See Also