MATLAB: How to plot graph

filelog

Hi,
I’like to plot log graph in matlab.Can you help me? Example is below in file.
Thanks for answer.

Best Answer

I have already answered the similar question, it's same. In 6 you have to change to 9
x=1:1:100;
log9(x)=log(x)/log(9)
y=log9(x);
plot(y);
Try to learn yourself, keep doing and trying