Use XTick property of axes object to define where you want to place ticks. Run the following
ax = gca;
ax.XTick = logspace(3, 10, 8);
It will display all the required ticks.
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!