exp

open fun exp(exponent: 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

exponent

the function to exponentiate this function's results by


open fun exp(exponent: Double): UnaryFunction

Creates a composite function h(x) such that h(x) = f(x) ^ k.

Return

the composite function f(x) ^ k

Parameters

exponent

the constant value to exponentiate this function's results by