calculus: Calculus utilities, based on calculus.jl

Calculus utilities, based on calculus.jl

Functions

cbrt(x)

cubic root

derivative(func)

return a new function representing the derivative of func

eps(x)

Difference with the next representable float

finite_difference(func, x[, mode])

derivative of func at x

finite_difference_central(func, x[, h])

rtype:

float

finite_difference_forward(func, x[, h])

rtype:

float

integrate(f, a, b[, method])

rtype:

float

integrate_adaptive_simpsons(f, a, b[, ...])

rtype:

float

integrate_monte_carlo(f, a, b, iterations)

next_float_down(x)

return the previous representable float

next_float_up(x)

Return the next representable float

next_toward(x, y)

return the next representable float between x and y

nextafter(x[, direction])

returns the next float after x in the direction indicated