www.kxcad.net Home > CAE Index > MSC Software Index > Adams MD R2 Index
ANINT(a) = int(a + .5) if a > 0
ANINT(a) = int(a - .5) if a < 0The value of the mathematical function int of a variable x is equal to x if x is an integer. If x is not an integer, then int(x) is equal to the nearest integer to x whose magnitude is not greater than the magnitude of x.Thus:
ANINT(-4.6) = -5
ANINT(4.6) = 5