Vector.GreaterThan メソッド

定義

オーバーロード

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

1 つの倍精度浮動小数点のベクトル内の要素が、2 番目の倍精度浮動小数点のベクトル内の対応する要素より大きいかどうかを通知する値を要素とする、新しい整数ベクトルを返します。

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

1 つの整数ベクトル内の要素が 2 番目の整数ベクトル内の対応する要素より大きいかどうかを通知する値を要素とする新しい整数ベクトルを返します。

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

1 つの長整数ベクトル内の要素が 2 番目の長整数ベクトル内の対応する要素より大きいかどうかを通知する値を要素とする新しい長整数ベクトルを返します。

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

1 つの単精度浮動小数点のベクトル内の要素が、2 番目の単精度浮動小数点のベクトル内の対応する要素より大きいかどうかを通知する値を要素とする、新しい整数ベクトルを返します。

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

指定した型の 1 つのベクトル内の要素が、同じ型の 2 番目のベクトル内の対応する要素より大きいかどうかを通知する値を要素とする、新しいベクトルを返します。

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

1 つの倍精度浮動小数点のベクトル内の要素が、2 番目の倍精度浮動小数点のベクトル内の対応する要素より大きいかどうかを通知する値を要素とする、新しい整数ベクトルを返します。

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>

比較する 2 番目のベクトル。

戻り値

結果の整数ベクトル。

適用対象

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

1 つの整数ベクトル内の要素が 2 番目の整数ベクトル内の対応する要素より大きいかどうかを通知する値を要素とする新しい整数ベクトルを返します。

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>

比較する 2 番目のベクトル。

戻り値

結果の整数ベクトル。

適用対象

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

1 つの長整数ベクトル内の要素が 2 番目の長整数ベクトル内の対応する要素より大きいかどうかを通知する値を要素とする新しい長整数ベクトルを返します。

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>

比較する 2 番目のベクトル。

戻り値

結果の長整数ベクトル。

適用対象

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

1 つの単精度浮動小数点のベクトル内の要素が、2 番目の単精度浮動小数点のベクトル内の対応する要素より大きいかどうかを通知する値を要素とする、新しい整数ベクトルを返します。

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>

比較する 2 番目のベクトル。

戻り値

結果の整数ベクトル。

適用対象

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

指定した型の 1 つのベクトル内の要素が、同じ型の 2 番目のベクトル内の対応する要素より大きいかどうかを通知する値を要素とする、新しいベクトルを返します。

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>

比較する 2 番目のベクトル。

戻り値

結果のベクトル。

適用対象