Table of Contents

Method WidenUpper

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

WidenUpper(Vector<float>)

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

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

Parameters

value Vector<float>

Returns

Vector<double>

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

See Also

WidenUpper(Vector<sbyte>)

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

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

Parameters

value Vector<sbyte>

Returns

Vector<short>

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

See Also

WidenUpper(Vector<byte>)

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

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

Parameters

value Vector<byte>

Returns

Vector<ushort>

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

See Also

WidenUpper(Vector<short>)

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

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

Parameters

value Vector<short>

Returns

Vector<int>

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

See Also

WidenUpper(Vector<ushort>)

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

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

Parameters

value Vector<ushort>

Returns

Vector<uint>

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

See Also

WidenUpper(Vector<int>)

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

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

Parameters

value Vector<int>

Returns

Vector<long>

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

See Also

WidenUpper(Vector<uint>)

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

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

Parameters

value Vector<uint>

Returns

Vector<ulong>

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

See Also