ROUND
From STX Wiki
Jump to navigationJump to search
ROUND
Usage:
ROUND a
Inputs:
a | number or vector |
Outputs:
y | number or vector (same type as a) |
Function:
Convert input a to integer. The number is rounded according to the fractional part.
if a is a number: y = Int(a + 1/2)
if a is a vector: y[i] = Int(a[i] + 1/2)
The output y|y[i] is a float number|vector with integer value|s