Skip to content

rounding in between orders of magnitude #9

Description

@debrouwere

Quantize to somewhere in between a magnitude.

For example:

  • ceil(55.25, 1.2) => 55.26
  • floor(55.25, 1.2) => 55.24
  • round(55.3333, 2.5) => 55.335
  • round(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.225
  • floor(1.2341234, 1.50) == 1.20

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions