Vector256.CopySign<T>(Vector256<T>, Vector256<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the per-element sign of a vector to the per-element sign of another vector.
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector256<T> CopySign(System::Runtime::Intrinsics::Vector256<T> value, System::Runtime::Intrinsics::Vector256<T> sign);
public static System.Runtime.Intrinsics.Vector256<T> CopySign<T> (System.Runtime.Intrinsics.Vector256<T> value, System.Runtime.Intrinsics.Vector256<T> sign);
static member CopySign : System.Runtime.Intrinsics.Vector256<'T> * System.Runtime.Intrinsics.Vector256<'T> -> System.Runtime.Intrinsics.Vector256<'T>
Public Function CopySign(Of T) (value As Vector256(Of T), sign As Vector256(Of T)) As Vector256(Of T)
Type Parameters
- T
Parameters
- value
- Vector256<T>
The vector whose magnitude is used in the result.
- sign
- Vector256<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
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.