What's the mean of "axes(handles.axes1) " in GUI plot ?
조회 수: 8 (최근 30일)
이전 댓글 표시
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!