Clear Filters
Clear Filters

axis X special type

1 view (last 30 days)
Matus
Matus on 23 Apr 2013
Hello,
I would like to construct a graph which has the axis x with values arranged 3, 2, 1, 0, 1, 2, 3, ... (normally, it would be -3 -2 -1 0 1 2 3 .. but I need it as mentioned above). Can anyone help me?
Thank you.

Accepted Answer

the cyclist
the cyclist on 23 Apr 2013
Edited: the cyclist on 23 Apr 2013
Here's one way.
figure
plot(-3:3,1:7,'.-')
set(gca,'XTickLabel',[3 2 1 0 1 2 3])
Note that I have only changed the label of the axis, but not the values of the plotted points themselves, which still have x values running from -3 to 3.
  1 Comment
Matus
Matus on 23 Apr 2013
ok, thank you, it's useful for me.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots 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!