Udostępnij za pośrednictwem


Vector.Min<T>(Vector<T>, Vector<T>) Metoda

Definicja

Zwraca nowy wektor, którego elementy są minimum każdej pary elementów w dwóch podanych wektorach.

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:
generic <typename T>
 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;
public static System.Numerics.Vector<T> Min<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
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)
static member Min : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
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)
Public Function Min(Of T) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

Parametry typu

T

Typ wektora. T może być dowolnym pierwotnym typem liczbowym.

Parametry

left
Vector<T>

Pierwszy wektor do porównania.

right
Vector<T>

Drugi wektor do porównania.

Zwraca

Minimalny wektor.

Dotyczy