reopen figure and edit
조회 수: 14 (최근 30일)
이전 댓글 표시
I saved figure (.fig) within online MatLab, when I open it on my desktop (2020b), the edit toolbar does not exist, why?
댓글 수: 0
답변 (1개)
prabhat kumar sharma
2025년 1월 22일
편집: prabhat kumar sharma
2025년 1월 22일
Hello Masoud,
When you save a figure in MATLAB Online and open it on your desktop version (like R2020b), you might notice that the edit toolbar is missing. Here are a few things to consider:
1. Version Differences: MATLAB Online and older desktop versions like R2020b can have different interfaces. Some features available online might not appear the same way on your desktop.
2. Toolstrip vs. Menus: MATLAB has been shifting from classic menus to a toolstrip interface. If you're using a version with the toolstrip, the edit options might be located in different tabs.
3. Figure Display Mode: Sometimes figures open in a mode where the toolbar is hidden. Double-check the figure's display settings.
4. Restore Layout: If the toolbar is missing, try resetting the layout:
- Go to the "Home" tab in MATLAB.
- Click on "Layout" and select "Default" to see if it brings back the toolbar.
5. Enable Toolbar Manually: You can try to enable the toolbar manually with a simple command:
fh = gcf; % Get the current figure
set(fh, 'Toolbar', 'figure'); % Show the toolbar
6. Consider Updating: If possible, updating to a newer version of MATLAB might resolve these inconsistencies.
If these steps don't help, reaching out to mathworks support might provide more tailored assistance.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!