Member of the basic class.
c = ceil(a)
Rounds each element of a matrix to the nearest integer towards +inf.
| Name | Description |
| a | Specifies a real or complex matrix. |
| Name | Description |
| c | Returns the rounded elements of a. If a is complex, LabVIEW rounds c using the following equation: c = ceil(real(a))+ceil(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 = ceil(A)