How can I change axes labels?

1 view (last 30 days)
Tomislav
Tomislav on 28 Nov 2012
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

Matt Fig
Matt Fig on 28 Nov 2012
set(gca,'ydir','normal')
  4 Comments
Matt Fig
Matt Fig on 28 Nov 2012
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....
Tomislav
Tomislav on 29 Nov 2012
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
Tomislav
Tomislav on 29 Nov 2012
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.
Tomislav
Tomislav on 29 Nov 2012
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.

Community Treasure Hunt

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

Start Hunting!