I've been using Matlab to draw plots for reports I'm assigned. However, I don't know how to make the axis look as shown in the link
However, the data I'm using isn't a function, but a set of points. For example:
A=[714 743 879 943 1067 1116 1214];
B=[76 82 96 84 132 115 90];
semilogx(A,B)
axis square
axis([0 10000 50 150])
would create a graph with logarithimic x-axis, but without the values nor scale presented in the link.
I've tried using semilogx function or different arguments for plot function, but failed miserably. Setting the range for x/y axis also doesn't seem to solve the problem.