Table of Contents

Method WidenLower

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

WidenLower(Vector<float>)

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

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

Parameters

value Vector<float>

Returns

Vector<double>

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

See Also

WidenLower(Vector<sbyte>)

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

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

Parameters

value Vector<sbyte>

Returns

Vector<short>

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

See Also

WidenLower(Vector<byte>)

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

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

Parameters

value Vector<byte>

Returns

Vector<ushort>

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

See Also

WidenLower(Vector<short>)

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

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

Parameters

value Vector<short>

Returns

Vector<int>

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

See Also

WidenLower(Vector<ushort>)

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

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

Parameters

value Vector<ushort>

Returns

Vector<uint>

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

See Also

WidenLower(Vector<int>)

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

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

Parameters

value Vector<int>

Returns

Vector<long>

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

See Also

WidenLower(Vector<uint>)

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

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

Parameters

value Vector<uint>

Returns

Vector<ulong>

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

See Also