no figure toolbar
조회 수: 7 (최근 30일)
이전 댓글 표시
When I open a figure in Matlab the toolbar is not displayed. So if I enter
>> figure
I get the same result as if I entered
>> figure('Toolbar','none')
How do I change the default behavior?? Thanks.
Eric
댓글 수: 0
답변 (3개)
Matt Fig
2011년 2월 15일
I think what you want is this:
set(0,'defaultfiguretoolbar','figure');
To see the list of options, use:
set(gcf,'toolbar')
Jiro Doke
2011년 2월 15일
I'm not sure if you're asking how to not display the toolbar by default, or asking why your figure does not display the toolbar (and how to fix the default).
set(0, 'defaultFigureToolbar', 'none')
To remove the default setting,
set(0, 'defaultFigureToolbar', 'remove')
댓글 수: 0
Oleg Komarov
2011년 2월 16일
set(0,'defaultfiguretoolbar','none')
if is there, then comment it out.
Oleg
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!