Member of the basic class.
c = fix(a)
Rounds each element of a matrix to the nearest integer towards 0.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns the rounded elements of a. If a is complex, LabVIEW rounds c using the following equation: c = fix(real(a))+fix(imag(a))*i. c is a matrix of the same size as a. |
A = [-3.7, -2.5, -1.3, 0, 1.3, 2.5, 3.7]
C = fix(A)