real-log

real-log y x

SRFI-94: returns logarithm of x base y. signals error if the arguments x and y are both not real or the result is not real. (real-log y x) == (/ (real-ln x) (real-ln y)).

See also real-ln.