Table of Contents

Method Widen

Namespace
Zyl.VectorTraits.Impl.AVector128
Assembly
VectorTraits.dll

Widen(Vector128<float>, out Vector128<double>, out Vector128<double>)

Widens a Vector128<T> into two Vector128<T> instances (将一个 Vector128<T> 扩宽为两个 Vector128<T> 实例). Mnemonic: element_ref(i, lower, upper) := widen(source[i]).

public override void Widen(Vector128<float> source, out Vector128<double> lower, out Vector128<double> upper)

Parameters

source Vector128<float>

The vector whose elements are to be widened (要扩宽其元素的向量).

lower Vector128<double>

When this method returns, contains the widened elements from lower indices in the source vector (当此方法返回时,包含源向量中来自较低下标的扩宽元素).

upper Vector128<double>

When this method returns, contains the widened elements from upper indices in the source vector (当此方法返回时,包含源向量中来自较高下标的扩宽元素).

See Also