div

open fun div(divisor: UnaryFunction): UnaryFunction

Creates a composite function h(x) such that h(x) = f(x) / g(x).

Return

the composite function f(x) / g(x)

Parameters

divisor

the function to divide this one by


open fun div(divisor: Double): UnaryFunction

Creates a composite function h(x) such that h(x) = 1/k * f(x).

Return

the composite function 1/k * f(x)

Parameters

divisor

the constant value to divide this function's results by