Vector.GreaterThan 方法

定義

多載

GreaterThan(Vector<Double>, Vector<Double>)

傳回新的整數向量,其元素表示某個雙精確度浮點向量的元素是否大於第二個雙精確度浮點向量中的對應元素。

GreaterThan(Vector<Int32>, Vector<Int32>)

傳回新的整數向量,其元素表示某個整數向量的元素是否大於第二個整數向量中的對應元素。

GreaterThan(Vector<Int64>, Vector<Int64>)

傳回新的長整數向量,其元素表示某個長整數向量的元素是否大於第二個長整數向量中的對應元素。

GreaterThan(Vector<Single>, Vector<Single>)

傳回新的整數向量,其元素表示某個單精確度浮點向量的元素是否大於第二個單精確度浮點向量中的對應元素。

GreaterThan<T>(Vector<T>, Vector<T>)

傳回新向量,其元素表示某個指定類型向量的元素是否大於相同類型之第二個向量中的對應元素。

GreaterThan(Vector<Double>, Vector<Double>)

來源:
Vector.cs
來源:
Vector.cs
來源:
Vector.cs

傳回新的整數向量,其元素表示某個雙精確度浮點向量的元素是否大於第二個雙精確度浮點向量中的對應元素。

public:
 static System::Numerics::Vector<long> GreaterThan(System::Numerics::Vector<double> left, System::Numerics::Vector<double> right);
public static System.Numerics.Vector<long> GreaterThan (System.Numerics.Vector<double> left, System.Numerics.Vector<double> right);
static member GreaterThan : System.Numerics.Vector<double> * System.Numerics.Vector<double> -> System.Numerics.Vector<int64>
Public Shared Function GreaterThan (left As Vector(Of Double), right As Vector(Of Double)) As Vector(Of Long)
Public Function GreaterThan (left As Vector(Of Double), right As Vector(Of Double)) As Vector(Of Long)

參數

left
Vector<Double>

要比較的第一個向量。

right
Vector<Double>

要比較的第二個向量。

傳回

產生的整數向量。

適用於

GreaterThan(Vector<Int32>, Vector<Int32>)

來源:
Vector.cs
來源:
Vector.cs
來源:
Vector.cs

傳回新的整數向量,其元素表示某個整數向量的元素是否大於第二個整數向量中的對應元素。

public:
 static System::Numerics::Vector<int> GreaterThan(System::Numerics::Vector<int> left, System::Numerics::Vector<int> right);
public static System.Numerics.Vector<int> GreaterThan (System.Numerics.Vector<int> left, System.Numerics.Vector<int> right);
static member GreaterThan : System.Numerics.Vector<int> * System.Numerics.Vector<int> -> System.Numerics.Vector<int>
Public Shared Function GreaterThan (left As Vector(Of Integer), right As Vector(Of Integer)) As Vector(Of Integer)
Public Function GreaterThan (left As Vector(Of Integer), right As Vector(Of Integer)) As Vector(Of Integer)

參數

left
Vector<Int32>

要比較的第一個向量。

right
Vector<Int32>

要比較的第二個向量。

傳回

產生的整數向量。

適用於

GreaterThan(Vector<Int64>, Vector<Int64>)

來源:
Vector.cs
來源:
Vector.cs
來源:
Vector.cs

傳回新的長整數向量,其元素表示某個長整數向量的元素是否大於第二個長整數向量中的對應元素。

public:
 static System::Numerics::Vector<long> GreaterThan(System::Numerics::Vector<long> left, System::Numerics::Vector<long> right);
public static System.Numerics.Vector<long> GreaterThan (System.Numerics.Vector<long> left, System.Numerics.Vector<long> right);
static member GreaterThan : System.Numerics.Vector<int64> * System.Numerics.Vector<int64> -> System.Numerics.Vector<int64>
Public Shared Function GreaterThan (left As Vector(Of Long), right As Vector(Of Long)) As Vector(Of Long)
Public Function GreaterThan (left As Vector(Of Long), right As Vector(Of Long)) As Vector(Of Long)

參數

left
Vector<Int64>

要比較的第一個向量。

right
Vector<Int64>

要比較的第二個向量。

傳回

產生的長整數向量。

適用於

GreaterThan(Vector<Single>, Vector<Single>)

來源:
Vector.cs
來源:
Vector.cs
來源:
Vector.cs

傳回新的整數向量,其元素表示某個單精確度浮點向量的元素是否大於第二個單精確度浮點向量中的對應元素。

public:
 static System::Numerics::Vector<int> GreaterThan(System::Numerics::Vector<float> left, System::Numerics::Vector<float> right);
public static System.Numerics.Vector<int> GreaterThan (System.Numerics.Vector<float> left, System.Numerics.Vector<float> right);
static member GreaterThan : System.Numerics.Vector<single> * System.Numerics.Vector<single> -> System.Numerics.Vector<int>
Public Shared Function GreaterThan (left As Vector(Of Single), right As Vector(Of Single)) As Vector(Of Integer)
Public Function GreaterThan (left As Vector(Of Single), right As Vector(Of Single)) As Vector(Of Integer)

參數

left
Vector<Single>

要比較的第一個向量。

right
Vector<Single>

要比較的第二個向量。

傳回

產生的整數向量。

適用於

GreaterThan<T>(Vector<T>, Vector<T>)

來源:
Vector.cs
來源:
Vector.cs
來源:
Vector.cs

傳回新向量,其元素表示某個指定類型向量的元素是否大於相同類型之第二個向量中的對應元素。

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

類型參數

T

向量類型。 T 可以是任何基本數字型別。

參數

left
Vector<T>

要比較的第一個向量。

right
Vector<T>

要比較的第二個向量。

傳回

產生的向量。

適用於