Changing Axis in a GUI and Saving a figure in a GUI
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone I am having a bit of a problem with a GUI I am writing. The GUI plots a selected set of data from a list and has four editable text boxes that allows you to change the axes by changing a vector. The changing of the axes works well except when I change the axes it deletes the the plot in the axes window and I cannot plot new information on it. Any suggestions?
Second, I can not figure out how to take the axes and save it as a .jpeg. I think I should be using save(handle,'filename.jpg') I just can not figure out the correct handle to use.
Thanks!
0 个评论
采纳的回答
Hugo
2013-6-12
Dear Rhys Taus,
I might be wrong, but I think the problem is that you might be rewriting the axes instead of modifying them. To be explicit: Are you modifying the axes properties using the command set()?
Do the following:
1) When you define the axes with the command axes(... , ....), write instead:
haxes=axes(... , ...);
haxes is the handle of the axes you defined.
2) When you want to modify the properties of the axes, use:
set(haxes, propertyname , newvalue)
where propertyname and newvalue depend on what you want to modify. This command should not change what is plot, unless of course you change the properties 'XData', 'YData' or the alike.
3) For saving the axes, use:
saveas(haxes, 'filename.jpg', 'jpg');
Hope this helps. Best regards,
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!