Vector.GreaterThan Método

Definição

Sobrecargas

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

Retorna um novo vetor integral cujos elementos sinalizam se os elementos de um vetor de ponto flutuante de precisão dupla são maiores que seus elementos correspondentes em um segundo vetor de ponto flutuante de precisão dupla.Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.

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

Retorna um novo vetor integral cujos elementos sinalizam se os elementos de um vetor integral são maiores que seus elementos correspondentes em um segundo vetor integral.Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.

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

Retorna um novo vetor de inteiro longo cujos elementos sinalizam se os elementos de um vetor de inteiro longo são maiores que seus elementos correspondentes em um segundo vetor de inteiro longo.Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.

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

Retorna um novo vetor integral cujos elementos sinalizam se os elementos de um vetor de ponto flutuante de precisão simples são maiores que seus elementos correspondentes em um segundo vetor de ponto flutuante de precisão simples.Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.

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

Retorna um novo vetor cujos elementos sinalizam se os elementos de um vetor de um tipo especificado são maiores que seus elementos correspondentes em um segundo vetor do mesmo time.Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.

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

Retorna um novo vetor integral cujos elementos sinalizam se os elementos de um vetor de ponto flutuante de precisão dupla são maiores que seus elementos correspondentes em um segundo vetor de ponto flutuante de precisão dupla.Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.

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)

Parâmetros

left
Vector<Double>

O primeiro vetor a ser comparado.The first vector to compare.

right
Vector<Double>

O segundo vetor a ser comparado.The second vector to compare.

Retornos

Vector<Int64>

O vetor integral resultante.The resulting integral vector.

Aplica-se a

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

Retorna um novo vetor integral cujos elementos sinalizam se os elementos de um vetor integral são maiores que seus elementos correspondentes em um segundo vetor integral.Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.

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)

Parâmetros

left
Vector<Int32>

O primeiro vetor a ser comparado.The first vector to compare.

right
Vector<Int32>

O segundo vetor a ser comparado.The second vector to compare.

Retornos

Vector<Int32>

O vetor integral resultante.The resulting integral vector.

Aplica-se a

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

Retorna um novo vetor de inteiro longo cujos elementos sinalizam se os elementos de um vetor de inteiro longo são maiores que seus elementos correspondentes em um segundo vetor de inteiro longo.Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.

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)

Parâmetros

left
Vector<Int64>

O primeiro vetor a ser comparado.The first vector to compare.

right
Vector<Int64>

O segundo vetor a ser comparado.The second vector to compare.

Retornos

Vector<Int64>

O vetor de inteiro longo resultante.The resulting long integer vector.

Aplica-se a

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

Retorna um novo vetor integral cujos elementos sinalizam se os elementos de um vetor de ponto flutuante de precisão simples são maiores que seus elementos correspondentes em um segundo vetor de ponto flutuante de precisão simples.Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.

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)

Parâmetros

left
Vector<Single>

O primeiro vetor a ser comparado.The first vector to compare.

right
Vector<Single>

O segundo vetor a ser comparado.The second vector to compare.

Retornos

Vector<Int32>

O vetor integral resultante.The resulting integral vector.

Aplica-se a

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

Retorna um novo vetor cujos elementos sinalizam se os elementos de um vetor de um tipo especificado são maiores que seus elementos correspondentes em um segundo vetor do mesmo time.Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.

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 static System.Numerics.Vector<T> GreaterThan<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right) where T : struct;
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)
Public Shared Function GreaterThan(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

Parâmetros de tipo

T

O tipo de vetor.The vector type. T pode ser qualquer tipo numérico primitivo.T can be any primitive numeric type.

Parâmetros

left
Vector<T>

O primeiro vetor a ser comparado.The first vector to compare.

right
Vector<T>

O segundo vetor a ser comparado.The second vector to compare.

Retornos

Vector<T>

O vetor resultante.The resulting vector.

Aplica-se a