about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/logb.m
blob: aa77ddb9b6eab2ff2d6afd525773f104ab490858 (plain)
1
2
3
4
5
function x = logb(y, base)
% logb - logarithm to base b
% function x = logb(y, base)

x = log(y) ./ log(base);