2015-04-29 08:20:44 +00:00
|
|
|
``mathutils`` - Mathematical functions
|
|
|
|
======================================
|
2015-04-18 13:41:50 +00:00
|
|
|
|
|
|
|
.. automodule:: boltons.mathutils
|
|
|
|
|
|
|
|
Alternative Ceiling/Floor Functions
|
|
|
|
-----------------------------------
|
|
|
|
|
2015-04-25 05:39:08 +00:00
|
|
|
.. autofunction:: boltons.mathutils.ceil_from_iter
|
2015-04-18 13:41:50 +00:00
|
|
|
|
2015-04-27 09:16:54 +00:00
|
|
|
.. autofunction:: boltons.mathutils.floor_from_iter
|
|
|
|
|
|
|
|
Note: :func:`ceil_from_iter` and :func:`floor_from_iter` functions are based on `this example`_ using from the
|
|
|
|
:mod:`bisect` module in the standard library. Refer to this `StackOverflow Answer`_ for further information regarding
|
|
|
|
the performance impact of this approach.
|
|
|
|
|
|
|
|
.. _this example: https://docs.python.org/3/library/bisect.html#searching-sorted-lists
|
2015-04-29 08:20:44 +00:00
|
|
|
.. _StackOverflow Answer: http://stackoverflow.com/a/12141511/811740
|