Renumber an axis of a figure

4 ビュー (過去 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 Center および File ExchangeGrid 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