MATLAB: Programming Mathematics logarithm problem

logmathmatic

Hello everyone How can I write this equation specifily the base of log on Matlab ?
(n=1+logbase(r/t) for(s/E) if r,t,s,E are constant number ??

Best Answer

n=1+log(s/E)/log(r/t);
Related Question