Tagged Questions
2
votes
3answers
89 views
Is there a way to floor/ceil based on whether the value is over 0.5 or under?
I am trying to round my values so that if it's 0.5 or greater, it becomes 1, else it becomes 0. For example:
3.7 -> 4;
1.3 -> 1;
2.5 -> 3;
...
Any ideas?