-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
Description
Quantize to somewhere in between a magnitude.
For example:
ceil(55.25, 1.2) => 55.26floor(55.25, 1.2) => 55.24round(55.3333, 2.5) => 55.335round(12.345, 1.1) == round(12.345, 2) == 12.34
Note that quantization beyond an order of magnitude results
in a variable amount of decimal digits depending on the
lowest common multiple.
For example:
floor(1.2341234, 1.25) == 1.225floor(1.2341234, 1.50) == 1.20