Changing Axis in a GUI and Saving a figure in a GUI

2 ビュー (過去 30 日間)
Rhys
Rhys 2013 年 6 月 12 日
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!

採用された回答

Hugo
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,
  2 件のコメント
Rhys
Rhys 2013 年 6 月 12 日
Thanks! I was just going from the GUIDE but after I programatically made my axes like you said it seems to be working great! Now I just need to mess with the size and position a little bit to make it look nice again! Thanks! -Rhys
Rhys
Rhys 2013 年 6 月 13 日
Hi Hugo,
The axes worked perfectly and I have my GUI running and looking nice! I am still having problems with saving the plot itself. When I try
saveas(haxes, 'filename.jpg', 'jpg');
the whole GUI is saved. Is there anyway to save the plot only?
Cheers,
Rhys

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by