Change position of numbers on x axes in surface plot
3 views (last 30 days)
Show older comments
Hi. I plot a surface plot and the numbers in the xaxis match the lines that go through the surface. Is there any way to get the numbers to be inline with the middle of the squares instead of inline with the lines in the surface plot?
So I would like to move all numbers on x-axis with say half a step, the same for y-axis.
Is this possible to do?
Greateful for all help!
Kind Regards, Fredrik
0 Comments
Accepted Answer
Kevin Holst
on 23 Mar 2012
Perhaps something like this would work for you?
grid off %this prevents the addition of gridlines at half spacing
ha = gca
set(ha,'XTick',1.5:1:9.5)
set(ha,'XTickLabel',1:9)
set(ha,'YTick',1.5:1:9.5)
set(ha,'YTickLabel',1:9)
Does that do what you're wanting?
More Answers (1)
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!