setting the step of x and y axes

4 views (last 30 days)
I'm looking for the way to set the step of x and y axes. does it exist a way?
  1 Comment
Thomas
Thomas on 18 Oct 2012
what do you mean by 'step of x and y axes'?

Sign in to comment.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 18 Oct 2012
Edited: Azzi Abdelmalek on 18 Oct 2012
t=0:0.1:10
y=cos(t)
plot(t,y)
set(gca,'xtick',linspace(min(t),max(t),8),'ytick',linspace(min(y),max(y),8))

More Answers (0)

Categories

Find more on Visual Exploration in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!