annotate _FullBNT/KPMtools/logb.m @ 9:4ea6619cb3f5 tip

removed log files
author matthiasm
date Fri, 11 Apr 2014 15:55:11 +0100
parents b5b38998ef3b
children
rev   line source
matthiasm@8 1 function x = logb(y, base)
matthiasm@8 2 % logb - logarithm to base b
matthiasm@8 3 % function x = logb(y, base)
matthiasm@8 4
matthiasm@8 5 x = log(y) ./ log(base);