reopen figure and edit

7 Ansichten (letzte 30 Tage)
masoud cha
masoud cha am 22 Feb. 2021
I saved figure (.fig) within online MatLab, when I open it on my desktop (2020b), the edit toolbar does not exist, why?

Antworten (1)

prabhat kumar sharma
prabhat kumar sharma am 22 Jan. 2025
Bearbeitet: prabhat kumar sharma am 22 Jan. 2025
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.

Kategorien

Mehr zu Printing and Saving finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by