MATLAB: Need help with code!

functionlogarithm

Hello,how can i write logarithm with base 11 in matlab?

Best Answer

You run a numeric solution to the equation
11^y = x
where x is the input, and y is the logarithm base 11 to be found.
Or you could use the identity
log11(x) = log(x)/log(11)
where log is the natural logarithm.