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