Calculator Function RefrenceFunction Reference >Calculator Function Reference >General Math>Rounding FunctionsRounding FunctionsThere are three rounding functions supported.
round(10.5)=11
floor returns the highest integer less than or equal to x.
round(3.14159,2)=3.14 ceil returns the smallest integer not less than x.
floor(10.8)=10
Each of these function when given a complex input will operate on the real and
imaginary parts seperatly.
ceil(4.4)=5
round(3.2+5.7i)=3+6i
floor(-4.4+5.4i)=-4+5i ceil(6-1.2i)=6-i |