Vector.Divide 方法 
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
| Divide<T>(Vector<T>, T) | 
						 将向量除以标量以计算每个元素的商。  | 
        	
| Divide<T>(Vector<T>, Vector<T>) | 
						 返回一个新向量,其值是第一个向量的元素除以第二个向量中的相应元素所得的结果。  | 
        	
Divide<T>(Vector<T>, T)
- Source:
 - Vector.cs
 
- Source:
 - Vector.cs
 
将向量除以标量以计算每个元素的商。
public:
generic <typename T>
 static System::Numerics::Vector<T> Divide(System::Numerics::Vector<T> left, T right);
	public static System.Numerics.Vector<T> Divide<T> (System.Numerics.Vector<T> left, T right);
	static member Divide : System.Numerics.Vector<'T> * 'T -> System.Numerics.Vector<'T>
	Public Function Divide(Of T) (left As Vector(Of T), right As T) As Vector(Of T)
    类型参数
- T
 
向量中元素的类型。
参数
- left
 - Vector<T>
 
将除以 的 right向量。
- right
 - T
 
将除以 left的标量。
返回
的商除 left 以 right。
适用于
Divide<T>(Vector<T>, Vector<T>)
- Source:
 - Vector.cs
 
- Source:
 - Vector.cs
 
- Source:
 - Vector.cs
 
返回一个新向量,其值是第一个向量的元素除以第二个向量中的相应元素所得的结果。
public:
generic <typename T>
 where T : value class static System::Numerics::Vector<T> Divide(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
	public:
generic <typename T>
 static System::Numerics::Vector<T> Divide(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
	public static System.Numerics.Vector<T> Divide<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right) where T : struct;
	public static System.Numerics.Vector<T> Divide<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
	static member Divide : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)> (requires 'T : struct)
	static member Divide : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
	Public Shared Function Divide(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
	Public Function Divide(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
	Public Function Divide(Of T) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
    类型参数
- T
 
向量类型。 
              T 可以是任何基元数值类型。
参数
- left
 - Vector<T>
 
第一个向量。
- right
 - Vector<T>
 
第二个向量。
返回
相除后的向量。