matthiasm@8: function x = logb(y, base) matthiasm@8: % logb - logarithm to base b matthiasm@8: % function x = logb(y, base) matthiasm@8: matthiasm@8: x = log(y) ./ log(base);