Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 284 Bytes

File metadata and controls

22 lines (14 loc) · 284 Bytes

math.repy

An incomplete math library. Provides a few functions.

Functions

def math_ceil(x):

Returns the rounded value of x.

def math_floor(x):

Returns the floored value of x.

def math_log(X, base=math_e, epsilon=1e-16):