I already know the basic rules for the both functions:
$$\text{Ceil}(2.5)=3\\ \text{Floor}(2.5)=2$$
But I could not understand the following these:
$$\text{Ceil}(2.6, 0.25)=2.75\\ \text{Floor}(2.6, 0.25)=2.5$$
Why is there a second parameter? How Could I calculate the that to obtain the results above?
PS: I already been researching on google and books, but I only could get what I already know.
Thanks for your collaboration.
These are to the nearest multiple of $0.25$, rather than integer (multiple of $1$).