Graphics |
|
Saving Your Work
After editing a graph, you can:
- Save your work in a format that can be opened during another MATLAB session.
- Save your work in a format that can be used by other applications.
Saving a Graph in MAT-File Format
MATLAB supports a binary format in which you can save figures so that they can be opened in subsequent MATLAB sessions. MATLAB assigns these files the .fig
file name extension.
To save a graph in a figure file:
- Select Save from the figure window File menu or click the Save button on the toolbar. If this is the first time you are saving the file, the Save As dialog box appears.
- Make sure that the Save as type is Fig-file.
- Specify the name you want assigned to the figure file.
- Click OK.
The graph is saved as a figure file (.fig
), which is a binary file format used to store figures.
You can also use the saveas
command.
If you want to save the figure in a format that can be used by another application, see Saving to a Different Format (Exporting Figures).
Opening a Figure File
To open a figure file, perform these steps:
- Select Open from the File menu or click the Open button on the toolbar.
- Select the figure file you want to open and click OK.
- The figure file appears in a new figure window.
You can also use the open
command.
Saving to a Different Format (Exporting Figures)
To save a figure in a format that can be used by another application, such as the standard graphics file formats TIFF or EPS, perform these steps:
- Select Export from the figure window File menu. The Export dialog box appears.
- Select the format from the list of formats in the Save as type: menu. This selects the standard filename extension given to files of that type.
- Enter the name you want to give the file.
- Click Save.
Copying a Figure to the Clipboard
On Windows systems, you can also copy a figure to the clipboard and then paste it into another application:
- Select Copy Options from the Figure window Edit menu. The Copying Options page of the Preferences dialog box appears.
- Complete the fields on the Copying Options page and click OK.
- Select Copy Figure from the Edit menu.
- The figure is copied to the Windows clipboard. You can then paste the figure
from the Windows clipboard into a file in another application.
| Editing Objects in a Graph | | Printing Figures | |