Vector.Negate<T>(Vector<T>) 方法

定义

返回一个新向量,其元素是对指定向量中相应元素的求反。

public:
generic <typename T>
 where T : value class static System::Numerics::Vector<T> Negate(System::Numerics::Vector<T> value);
public static System.Numerics.Vector<T> Negate<T> (System.Numerics.Vector<T> value) where T : struct;
static member Negate : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)> (requires 'T : struct)
Public Shared Function Negate(Of T As Structure) (value As Vector(Of T)) As Vector(Of T)
Public Function Negate(Of T As Structure) (value As Vector(Of T)) As Vector(Of T)

类型参数

T

向量类型。 T 可以是任何基元数值类型。

参数

value
Vector<T>

源向量。

返回

Vector<T>

求反后的向量。

适用于