Vector.GreaterThan Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
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. |
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. |
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. |
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. |
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. |
GreaterThan(Vector<Single>, Vector<Single>)
- Origem:
- Vector.cs
- Origem:
- Vector.cs
- Origem:
- Vector.cs
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.
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)
Parâmetros
Retornos
O vetor integral resultante.
Aplica-se a
GreaterThan(Vector<Double>, Vector<Double>)
- Origem:
- Vector.cs
- Origem:
- Vector.cs
- Origem:
- Vector.cs
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.
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)
Parâmetros
Retornos
O vetor integral resultante.
Aplica-se a
GreaterThan(Vector<Int32>, Vector<Int32>)
- Origem:
- Vector.cs
- Origem:
- Vector.cs
- Origem:
- Vector.cs
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.
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)
Parâmetros
Retornos
O vetor integral resultante.
Aplica-se a
GreaterThan(Vector<Int64>, Vector<Int64>)
- Origem:
- Vector.cs
- Origem:
- Vector.cs
- Origem:
- Vector.cs
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.
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)
Parâmetros
Retornos
O vetor de inteiro longo resultante.
Aplica-se a
GreaterThan<T>(Vector<T>, Vector<T>)
- Origem:
- Vector.cs
- Origem:
- Vector.cs
- Origem:
- Vector.cs
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.
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)
Parâmetros de tipo
- T
O tipo de vetor. T
pode ser qualquer tipo numérico primitivo.
Parâmetros
- left
- Vector<T>
O primeiro vetor a ser comparado.
- right
- Vector<T>
O segundo vetor a ser comparado.
Retornos
O vetor resultante.