mult

open fun mult(multiplier: 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

multiplier

the function to multiply this one by


open fun mult(multiplier: Double): UnaryFunction

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

Return

the composite function k * f(x)

Parameters

multiplier

the constant value to multiply this function's results by