Method Ceiling
- Namespace
 - Zyl.VectorTraits.Impl.AVector512
 
- Assembly
 - VectorTraits.dll
 
Ceiling(Vector512<float>)
Computes the ceiling of each element in a vector (计算向量中每个元素的向上取整). It is also known as round to positive infinity (它也被称作向正无穷舍入). See more: ToPositiveInfinity.
Mnemonic: rt[i] := ceiling(value[i]).
public override Vector512<float> Ceiling(Vector512<float> value)
Parameters
Returns
- Vector512<float>
 A vector whose elements are the ceiling of the elements in
value(一个向量,其元素是value中各元素的向上取整).
- See Also
 
Ceiling(Vector512<double>)
Computes the ceiling of each element in a vector (计算向量中每个元素的向上取整). It is also known as round to positive infinity (它也被称作向正无穷舍入). See more: ToPositiveInfinity.
Mnemonic: rt[i] := ceiling(value[i]).
public override Vector512<double> Ceiling(Vector512<double> value)
Parameters
Returns
- Vector512<double>
 A vector whose elements are the ceiling of the elements in
value(一个向量,其元素是value中各元素的向上取整).
- See Also