Because math.log does not support array, I'd like to complete log calculation in numpy.log instead of math.log
However, there are log10(),log2() in numpy. How do I calculate more general log like log5(6) in numpy? Please don't use log(6)/log(5)...
Thanks a lot!