axis X special type

1 次查看(过去 30 天)
Matus
Matus 2013-4-23
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.

采纳的回答

the cyclist
the cyclist 2013-4-23
编辑:the cyclist 2013-4-23
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by