Vector.Ceiling Método
Definição
Sobrecargas
| Ceiling(Vector<Double>) |
Retorna um novo vetor cujos elementos são os menores valores integrais, que são superiores ou iguais aos elementos do vetor fornecido.Returns a new vector whose elements are the smallest integral values that are greater than or equal to the given vector's elements. |
| Ceiling(Vector<Single>) |
Retorna um novo vetor cujos elementos são os menores valores integrais, que são superiores ou iguais aos elementos do vetor fornecido.Returns a new vector whose elements are the smallest integral values that are greater than or equal to the given vector's elements. |
Ceiling(Vector<Double>)
Retorna um novo vetor cujos elementos são os menores valores integrais, que são superiores ou iguais aos elementos do vetor fornecido.Returns a new vector whose elements are the smallest integral values that are greater than or equal to the given vector's elements.
public:
static System::Numerics::Vector<double> Ceiling(System::Numerics::Vector<double> value);
public static System.Numerics.Vector<double> Ceiling (System.Numerics.Vector<double> value);
static member Ceiling : System.Numerics.Vector<double> -> System.Numerics.Vector<double>
Public Shared Function Ceiling (value As Vector(Of Double)) As Vector(Of Double)
Parâmetros
Retornos
O vetor cujos elementos são os menores valores integrais, que são superiores ou iguais aos elementos do vetor fornecido.The vector whose elements are the smallest integral values that are greater than or equal to the given vector's elements. Se um valor for igual a NaN, NegativeInfinity ou PositiveInfinity, esse valor será retornado.If a value is equal to NaN, NegativeInfinity, or PositiveInfinity, that value is returned.
Comentários
Observe que esse método retorna um Double em vez de um tipo integral.Note that this method returns a Double instead of an integral type.
Aplica-se a
Ceiling(Vector<Single>)
Retorna um novo vetor cujos elementos são os menores valores integrais, que são superiores ou iguais aos elementos do vetor fornecido.Returns a new vector whose elements are the smallest integral values that are greater than or equal to the given vector's elements.
public:
static System::Numerics::Vector<float> Ceiling(System::Numerics::Vector<float> value);
public static System.Numerics.Vector<float> Ceiling (System.Numerics.Vector<float> value);
static member Ceiling : System.Numerics.Vector<single> -> System.Numerics.Vector<single>
Public Shared Function Ceiling (value As Vector(Of Single)) As Vector(Of Single)
Parâmetros
Retornos
O vetor cujos elementos são os menores valores integrais, que são superiores ou iguais aos elementos do vetor fornecido.The vector whose elements are the smallest integral values that are greater than or equal to the given vector's elements. Se um valor for igual a NaN, NegativeInfinity ou PositiveInfinity, esse valor será retornado.If a value is equal to NaN, NegativeInfinity, or PositiveInfinity, that value is returned.
Comentários
Observe que esse método retorna um Single em vez de um tipo integral.Note that this method returns a Single instead of an integral type.