reopen figure and edit
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I saved figure (.fig) within online MatLab, when I open it on my desktop (2020b), the edit toolbar does not exist, why?
0 comentarios
Respuestas (1)
prabhat kumar sharma
el 22 de En. de 2025
Editada: prabhat kumar sharma
el 22 de En. de 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.
0 comentarios
Ver también
Categorías
Más información sobre Printing and Saving en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!