How to adjust the x-axes and y-axes values without resizing the image/figure?
2 次查看(过去 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.
0 个评论
采纳的回答
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)
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!