How to adjust the x-axes and y-axes values without resizing the image/figure?

조회 수: 12 (최근 30일)
Hey all,
I am working on a GUI, where I want to display the output on a figure window. So for giggles, I will make the following example as a reference, and if you have some suggestions, you can pitch in your ideas based upon this example.
Let's assume that I am displaying on a figure window, an image. So the following code is going to display peaks(256) on the figure.
img=peaks(256);
hFigure=figure; hAxes=axes;
set(hFigure,'name','My Image', 'numbertitle', 'off');
hImage=image(img);
set(hAxes,'Layer','top','xgrid','on','ygrid','on');
So the problem I have is that this plot will have limits that range from 0-255 in x and y directions. I want to scale the axes numbers without manipulating the image or resizing the image. In other words, max number should be, for example, not 255, but 25.5 in all directions, hence the range of 0-25.5.
In essence the goal is to just modify the string values of the axes. How can I access the values of the axes? I can do num2str and spit the scaled numbers back to the figure, but how?
All answers are greatly appreciated. Thanks. Giray.

채택된 답변

Tom
Tom 2013년 6월 26일
AX = axes;
plot(rand(5))
oldTick = get(AX,'YTick'); %get the current tick points of the y axis
newTickStr = cellstr(num2str(oldTick'/10)); %create a cell array of strings
set(AX,'YTickLabel',newTickStr)

추가 답변 (1개)

GIRAY
GIRAY 2013년 6월 26일
Tom, You are the man!
Thank you very much. Regards, Giray.

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by