how to start xlim from 2 rather than 1
2 次查看(过去 30 天)
显示 更早的评论
a = rand(1,33);
bar(a(2:33))
Now i need xlimit for each lines and it should start from 2 and continue with 3 4 5 6.....33
0 个评论
采纳的回答
Ilham Hardy
2016-1-29
What do you mean by continue with 3 4 5 6 ... 333?
Perhaps something like this?
set(gca,'xlim',[2 33]);
2 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!