Table of Contents

Method WidenLower

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

WidenLower(Vector512<float>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

public static Vector512<double> WidenLower(Vector512<float> value)

Parameters

value Vector512<float>

Returns

Vector512<double>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector512<sbyte>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector512<short> WidenLower(Vector512<sbyte> value)

Parameters

value Vector512<sbyte>

Returns

Vector512<short>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector512<byte>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector512<ushort> WidenLower(Vector512<byte> value)

Parameters

value Vector512<byte>

Returns

Vector512<ushort>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector512<short>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

public static Vector512<int> WidenLower(Vector512<short> value)

Parameters

value Vector512<short>

Returns

Vector512<int>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector512<ushort>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector512<uint> WidenLower(Vector512<ushort> value)

Parameters

value Vector512<ushort>

Returns

Vector512<uint>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector512<int>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

public static Vector512<long> WidenLower(Vector512<int> value)

Parameters

value Vector512<int>

Returns

Vector512<long>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector512<uint>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector512<ulong> WidenLower(Vector512<uint> value)

Parameters

value Vector512<uint>

Returns

Vector512<ulong>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also