Table of Contents

Method Floor

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

Floor(Vector<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 Vector<float> Floor(Vector<float> value)

Parameters

value Vector<float>

The vector that will have its floor computed (将计算向下舍入的向量).

Returns

Vector<float>

A vector whose elements are the floor of the elements in value (一个向量,其元素是 value 中各元素的向下取整).

See Also

Floor(Vector<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 Vector<double> Floor(Vector<double> value)

Parameters

value Vector<double>

The vector that will have its floor computed (将计算向下舍入的向量).

Returns

Vector<double>

A vector whose elements are the floor of the elements in value (一个向量,其元素是 value 中各元素的向下取整).

See Also