Change position of numbers on x axes in surface plot

조회 수: 1 (최근 30일)
Fredrik
Fredrik 2012년 3월 23일
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

채택된 답변

Kevin Holst
Kevin Holst 2012년 3월 23일
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?

추가 답변 (1개)

Fredrik
Fredrik 2012년 3월 27일
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

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by