What's the mean of "axes(handles.axes1) " in GUI plot ?
8 ビュー (過去 30 日間)
古いコメントを表示
Nguyen Trong Nhan
2013 年 12 月 23 日
コメント済み: Image Analyst
2013 年 12 月 23 日
When plotting in GUI, I see someones have the line: axes(handles.axes1); What does that line mean ? Could I skip that line ? thanks very much.
0 件のコメント
採用された回答
Image Analyst
2013 年 12 月 23 日
It means that the current axes should be set to axes1. Anything you do like title(), xlabel(), ylabel(), plot(), bar(), legend() or whatever, will now be applied to axes1 (unless you explicitly pass a different axes into the function which would override the default current axes).
4 件のコメント
Image Analyst
2013 年 12 月 23 日
That should work. What is the value of contents? Is it null? Or do you get an error? If so, what is the error?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Title についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!