MATLAB has a number of built-in functions, such as square root, sine, cosine, exponential, etc, functions. The following table gives a list of some commonly used functions. Later you will also write your own functions.
round(x)
Rounds to the nearest integer
floor(x)
Rounds down to nearest integer
ceil(x)
Rounds up to nearest integer
rem(y,x)
Remainder after dividing by (eg remainder of 17/3 is 2)