i plotted a graph its X-axis ranging from 0-1800 with a spacing of 200. how can i change the interval to 50 with same range(0-1800)

1 回表示 (過去 30 日間)
prajith kc
prajith kc 2014 年 2 月 19 日
回答済み: Iain 2014 年 2 月 19 日
axis setting

回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 2 月 19 日
x=0:200:1800
y=sin(x)
xi=0:50:1800
yi=interp1(x,y,xi)
plot(xi,yi)

Iain
Iain 2014 年 2 月 19 日
Starting after you've plotted it:
set(gca,'XTick',[0:50:1800])

カテゴリ

Help Center および File ExchangeBar Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by