Change position of numbers on x axes in surface plot

2 views (last 30 days)
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

Accepted Answer

Kevin Holst
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)

Fredrik
Fredrik on 27 Mar 2012
I have also made this plot with imagesc and not only surface.
When I try the same approach here, it does not work. The grid follows the numbers no matter what.
Any suggestion on how to solve this?
Kind Regards, Fredrik

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!