Renumber an axis of a figure

조회 수: 2 (최근 30일)
Zhiyong
Zhiyong 2012년 5월 31일
I am plotting a figure in which the adjacent elements of the x-axis are 1.224 meters apart. The x-label of the plotted figure will give an impression that the elements are 1 meter apart.
How do I change the numbers on the x-axis to reflect this?

채택된 답변

Geoff
Geoff 2012년 6월 1일
You can replace the 'XTick' member of the axis. Here, I just use the handle to the current axis.
x = 0:1.224:10;
y = rand(1,numel(x));
plot(x,y,'.-');
set(gca, 'XTick', x);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by