Method YGroup2Transpose_AlignRight
- Namespace
- Zyl.VectorTraits.Impl.AVector128
- Assembly
- VectorTraits.dll
YGroup2Transpose_AlignRight(Vector128<double>, Vector128<double>, out Vector128<double>)
Transpose a 22 matrix (对22矩阵进行转置).
Mnemonic: result0[i] := (0==(i&1))?( x[i&~1] ):( y[i&~1] )
, result1[i] := (0==(i&1))?( x[(i&~1) + 1] ):( y[(i&~1) + 1] )
.
public static Vector128<double> YGroup2Transpose_AlignRight(Vector128<double> data0, Vector128<double> data1, out Vector128<double> result1)
Parameters
data0
Vector128<double>Part 0 of the vector data (向量数据的第0部分).
data1
Vector128<double>Part 1 of the vector data (向量数据的第1部分).
result1
Vector128<double>Returns part 1 of the transposed data (返回转置后数据的第1部分).
Returns
- See Also
YGroup2Transpose_AlignRight(Vector128<long>, Vector128<long>, out Vector128<long>)
Transpose a 22 matrix (对22矩阵进行转置).
Mnemonic: result0[i] := (0==(i&1))?( x[i&~1] ):( y[i&~1] )
, result1[i] := (0==(i&1))?( x[(i&~1) + 1] ):( y[(i&~1) + 1] )
.
public static Vector128<long> YGroup2Transpose_AlignRight(Vector128<long> data0, Vector128<long> data1, out Vector128<long> result1)
Parameters
data0
Vector128<long>Part 0 of the vector data (向量数据的第0部分).
data1
Vector128<long>Part 1 of the vector data (向量数据的第1部分).
result1
Vector128<long>Returns part 1 of the transposed data (返回转置后数据的第1部分).
Returns
- See Also
YGroup2Transpose_AlignRight(Vector128<ulong>, Vector128<ulong>, out Vector128<ulong>)
Transpose a 22 matrix (对22矩阵进行转置).
Mnemonic: result0[i] := (0==(i&1))?( x[i&~1] ):( y[i&~1] )
, result1[i] := (0==(i&1))?( x[(i&~1) + 1] ):( y[(i&~1) + 1] )
.
[CLSCompliant(false)]
public static Vector128<ulong> YGroup2Transpose_AlignRight(Vector128<ulong> data0, Vector128<ulong> data1, out Vector128<ulong> result1)
Parameters
data0
Vector128<ulong>Part 0 of the vector data (向量数据的第0部分).
data1
Vector128<ulong>Part 1 of the vector data (向量数据的第1部分).
result1
Vector128<ulong>Returns part 1 of the transposed data (返回转置后数据的第1部分).
Returns
- See Also