Vector.CopySign<T>(Vector<T>, Vector<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::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)
Type Parameters
- T
Parameters
- value
- Vector<T>
The vector whose magnitude is used in the result.
- sign
- Vector<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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.