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.