vec_trunc

Purpose

Returns a vector containing the truncated values of the corresponding elements of the given vector.

Syntax

d=vec_trunc(a)

Result and argument types

The following table describes the types of the returned value and the function arguments.

d a
vector4double vector4double

Result value

Each element of the result contains the value of the corresponding element of a, truncated to an integral value.

Example

a  = (-5.8, -2.3, 2.3, 5.8)
d: (-5.0, -2.0, 2.0, 5.0)