Vector<T>.Subtraction(Vector<T>, Vector<T>) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从第一个向量中减去第二个向量。
public:
static System::Numerics::Vector<T> operator -(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> operator - (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member ( - ) : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( - ) : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Operator - (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
参数
- left
- Vector<T>
第一个向量。
- right
- Vector<T>
第二个向量。
返回
从 left
中减去 right
得到的结果向量。
例外
.NET 5 及更高版本:不支持类型 T
。
注解
方法 Subtraction 定义 对象的减法运算 Vector<T> 。