The Workbook File Format
Introduction
Note: To access this overview page as a workbook, click here.
The Workbook file format lets you collect:
Maple worksheets, library archives and language files,
Data (such as images or spreadsheets), and
Other items
into a single file. This helps you organize your Maple-based projects.
When you organize a Maple project with multiple files into a single Workbook, you only have to keep track of one file, rather than several. This eliminates the risk of losing file dependencies when moving Maple projects between locations.
Workbooks can be opened inside Maple, and all of the data and attachments can be accessed and manipulated.
Workbook Navigator
The Navigator palette in the Workbook pane (on the left-hand side of the Maple interface) illustrates the file and the folder structure of a Workbook.
Files can be attached from the Navigator. Once attached, if you double-click on:
An image: You will see the image,
A Maple language file (.mpl): You will see the code in a Code Editor,
Or a CSV or other data file: You will see the contents in the system file viewer.
The Navigator can have a folder structure to help you manage attachments. You can also reorder and move files.
Reading Attachments
You can read data attached to a workbook. For example, here we read:
The data from a CSV file,
And the contents of a Maple language file.
Note that the CSV file is shared with another Maple worksheet in this workbook ("El Centro Earthquake.mw").
The file path to an attachment is known as a Workbook URI. Right-click on an attachment in the Navigator and select "Copy Path" to copy its URI into the clipboard (or one of several other file operations).
data ≔ ImportMatrixthis:///El Centro Earthquake/elcentro_NS.csv:
plotdata,size=600,200,color=ColorTools:-ColorRGB,0,79255,121255,thickness=0
read this:///factorial.mpl
f⁡4
24
Variables Palette
The Variables palette in the Workbook pane lists the assigned names in the current worksheet, together with the type and value.
To see the value of a variable, double-click on the appropriate item.
Any item in the Variables palette can be shared between worksheets in workbook. To share a variable, simply right-click on the variable and select Save.
Saved Variables
Items saved in the Variables palette are automatically available for use after restarts and reloads - they don't need to be redefined.
The "El Centro Earthquake Analysis.mw" worksheet has a saved variable assigned to a plot.
To view the plot, just execute p1.
p1
Download Help Document