Table of Contents

Method YGroup2ZipHigh

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

YGroup2ZipHigh(Vector<double>, Vector<double>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

public override Vector<double> YGroup2ZipHigh(Vector<double> x, Vector<double> y)

Parameters

x Vector<double>

A vector consisting purely of X-components (纯由X分量所组成的向量).

y Vector<double>

A vector consisting purely of Y-components (纯由Y分量所组成的向量).

Returns

Vector<double>

Returns part 1 of the interleaved data (返回交织后数据的第1部分).

See Also

YGroup2ZipHigh(Vector<long>, Vector<long>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

public override Vector<long> YGroup2ZipHigh(Vector<long> x, Vector<long> y)

Parameters

x Vector<long>

A vector consisting purely of X-components (纯由X分量所组成的向量).

y Vector<long>

A vector consisting purely of Y-components (纯由Y分量所组成的向量).

Returns

Vector<long>

Returns part 1 of the interleaved data (返回交织后数据的第1部分).

See Also

YGroup2ZipHigh(Vector<ulong>, Vector<ulong>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

[CLSCompliant(false)]
public override Vector<ulong> YGroup2ZipHigh(Vector<ulong> x, Vector<ulong> y)

Parameters

x Vector<ulong>

A vector consisting purely of X-components (纯由X分量所组成的向量).

y Vector<ulong>

A vector consisting purely of Y-components (纯由Y分量所组成的向量).

Returns

Vector<ulong>

Returns part 1 of the interleaved data (返回交织后数据的第1部分).

See Also

YGroup2ZipHigh(Vector<ExInt128>, Vector<ExInt128>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

public override Vector<ExInt128> YGroup2ZipHigh(Vector<ExInt128> x, Vector<ExInt128> y)

Parameters

x Vector<ExInt128>

A vector consisting purely of X-components (纯由X分量所组成的向量).

y Vector<ExInt128>

A vector consisting purely of Y-components (纯由Y分量所组成的向量).

Returns

Vector<ExInt128>

Returns part 1 of the interleaved data (返回交织后数据的第1部分).

See Also

YGroup2ZipHigh(Vector<ExUInt128>, Vector<ExUInt128>)

Interleave 2 vectors into 2-element groups and returns the data in the high position. (将2个向量交织为2-元素组, 并返回高位置的数据). Mnemonic: rt[i] := (0==(i&1))?( x[i2] ):( y[i2] ), i2 := (i+T.Count)/2.

[CLSCompliant(false)]
public override Vector<ExUInt128> YGroup2ZipHigh(Vector<ExUInt128> x, Vector<ExUInt128> y)

Parameters

x Vector<ExUInt128>

A vector consisting purely of X-components (纯由X分量所组成的向量).

y Vector<ExUInt128>

A vector consisting purely of Y-components (纯由Y分量所组成的向量).

Returns

Vector<ExUInt128>

Returns part 1 of the interleaved data (返回交织后数据的第1部分).

See Also