Vector512.CopySign<T>(Vector512<T>, Vector512<T>) Method

Definition

Copies the per-element sign of a vector to the per-element sign of another vector.

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

Type Parameters

T

Parameters

value
Vector512<T>

The vector whose magnitude is used in the result.

sign
Vector512<T>

The vector whose sign is used in the result.

Returns

A vector with the magnitude of value and the sign of sign.

Applies to