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.

 Akzeptierte Antwort

Matt Fig
Matt Fig am 28 Nov. 2012

0 Stimmen

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

4 Kommentare

Tomislav
Tomislav am 28 Nov. 2012
But this way my data is upside down. I want to keep the data the way it is.
Thanks
Matt Fig
Matt Fig am 28 Nov. 2012
set(gca,'yticklab',flipud(get(gca,'yticklab')))
Matt Fig
Matt Fig am 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 am 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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 28 Nov. 2012
Bearbeitet: Azzi Abdelmalek am 28 Nov. 2012

0 Stimmen

yt=get(gca,'ytick');
set(gca,'yticklabel',fliplr(yt))

8 Kommentare

Tomislav
Tomislav am 28 Nov. 2012
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.
Azzi Abdelmalek
Azzi Abdelmalek am 28 Nov. 2012
I think your comments are contradictory
Tomislav
Tomislav am 28 Nov. 2012
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 am 28 Nov. 2012
Bearbeitet: Azzi Abdelmalek am 28 Nov. 2012
If you don't change your data, the data cursor will give the same values.
Tomislav
Tomislav am 28 Nov. 2012
I understand. I thouht that there is some way that cursor follows the axis labels.
OK, thank you very much.
Azzi Abdelmalek
Azzi Abdelmalek am 28 Nov. 2012
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.
Tomislav
Tomislav am 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 am 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Exploration finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by