Vector.CopySign<T>(Vector<T>, Vector<T>) 方法

定义

将向量的 per-element 符号复制到另一个向量的 per-element 符号。

public:
generic <typename T>
 static System::Numerics::Vector<T> CopySign(System::Numerics::Vector<T> value, System::Numerics::Vector<T> sign);
public static System.Numerics.Vector<T> CopySign<T> (System.Numerics.Vector<T> value, System.Numerics.Vector<T> sign);
static member CopySign : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Function CopySign(Of T) (value As Vector(Of T), sign As Vector(Of T)) As Vector(Of T)

类型参数

T

参数

value
Vector<T>

其数量级用于结果的向量。

sign
Vector<T>

在结果中使用其符号的向量。

返回

具有 value 级和 sign标志的向量。

适用于