Vector.Min<T>(Vector<T>, Vector<T>) 方法

定义

返回一个新向量,其元素是两个给定向量中每对元素的最小值。

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

类型参数

T

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

参数

left
Vector<T>

要比较的第一个向量。

right
Vector<T>

要比较的第二个向量。

返回

Vector<T>

最小向量。

适用于