How can I change axes labels?

from this:
0 ^
1 .
2 .
3 .
4 .
5 .
6 .
7 .
8 .
9 .
10.....................>
0 1 2 3 4 5 6 7 8 9 10
to this:
10^
9 .
8 .
7 .
6 .
5 .
4 .
3 .
2 .
1 .
0 .....................>
0 1 2 3 4 5 6 7 8 9 10
Thanks.

 Accepted Answer

set(gca,'ydir','normal')

4 Comments

But this way my data is upside down. I want to keep the data the way it is.
Thanks
set(gca,'yticklab',flipud(get(gca,'yticklab')))
If that doesn't do what you need, then it sounds like your problem is with the data itself. You should scale and shift the data before plotting....
I did it. I messed things up with:
I=flipud(I);
I remove that and added Matt's answer and it was good.
Thank you for your time.

Sign in to comment.

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 28 Nov 2012
Edited: Azzi Abdelmalek on 28 Nov 2012
yt=get(gca,'ytick');
set(gca,'yticklabel',fliplr(yt))

8 Comments

That keep tha data in place, but now when I pick a point with cursor data it shows the old data and it is not a mach with data on screen.
Thanks.
I think your comments are contradictory
No. Please, try to understand. I have data. It need to stay the way it is. The y label need to reverse, and when I pick a point with cursor data it need to match the changed y label. But it doesnt.
For example:
Old labels. Cursor data click bottom left corner it would show x=0, y=10.
On the new labels it will show the same but it need to show x=0, y=0.
Thanks.
Azzi Abdelmalek
Azzi Abdelmalek on 28 Nov 2012
Edited: Azzi Abdelmalek on 28 Nov 2012
If you don't change your data, the data cursor will give the same values.
I understand. I thouht that there is some way that cursor follows the axis labels.
OK, thank you very much.
I did'nt say there is no way to make it looks like it following axis labels, but I don't understand what is your goal, perhaps there is better ways.
I explained my goal in upper comment. Ok, here is the whole situation. I have horizontal, saggital and coronal slice. I have put slices each in his axes and additionally all three in one 3D axes. Now I have to be able pick two points, either from 3D coordinates or from individual slice and they has to mach. But it doesnt. Y label on individual slice is upside-down in relation to the same slice in 3D coordinate system.
Thanks.
I figure it out. It was my fault. Messed up things with flipud function.
Thank you Azzi for your time and patience.

Sign in to comment.

Categories

Community Treasure Hunt

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

Start Hunting!