Owning Class: basic
Requires: MathScript RT Module
c = floor(a)
Rounds each element of a matrix to the nearest integer towards -inf.
| Name | Description |
|---|---|
| a | Specifies a numeric scalar, vector, or matrix. |
| Name | Description |
|---|---|
| c | Returns the rounded elements of a. If a is complex, LabVIEW rounds c using the following equation: c = floor(real(a))+floor(imag(a))*i. c is a scalar, vector, or matrix of the same size as a. |
A = [-3.7, -2.5, -1.3, 0, 1.3, 2.5, 3.7]
C = floor(A)