![]() | Download Help (Windows Only) |
Owning Class: basic
Requires: MathScript RT Module
c = round(a)
Rounds input elements to the nearest integer value.
Name | Description |
---|---|
a | Specifies a real or complex scalar, vector, or matrix. |
Name | Description |
---|---|
c | Returns the elements of a rounded to the nearest integer value. If the fractional component of an element in a is 0.5, LabVIEW rounds away from zero. If a is complex, LabVIEW computes the nearest integer values using the following equation: c = round(real(a))+round(imag(a))*i. c is a scalar, vector, or matrix of the same size as a. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | Yes |
Supported on RT targets | Yes |
Suitable for bounded execution times on RT | Yes |
% The expected result is:
% [-4, -3, -2, -1, 1, 3, 4]
A = [-3.7, -2.5, -1.5, -1.2, 1.3, 2.5, 3.7]
C = round(A)
Helpful
Not Helpful