natural_log
relationalai.semantics.std.math
natural_log(value: NumberValue) -> ExpressionCompute the natural logarithm (ln).
Parameters
Section titled “Parameters”
(valueNumberValue) - A positive input number value. If the input value is not statically known to be non-positive, but turns out to be non-positive at runtime, returnsNaN.
Returns
Section titled “Returns”Expression- AnExpressioncomputing ln(value). Always returns aFloat.
Raises
Section titled “Raises”ValueError- Ifvalueis can be computed statically and is non-positive.