Formats/Jupyter - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Home : Support : Online Help : Formats/Jupyter

Jupyter Notebook (.ipynb) Format

Jupyter file format

 

Description

Examples

Description

• 

The Jupyter Notebook format (formerly IPython Notebook) is a file format used by the Jupyter web-based interactive computational environment (jupyter.org). It is based on the JSON format.

• 

It encodes the features of a Jupyter notebook, including an ordered list of input/output cells which can contain code, text), mathematics, plots, and other media.

• 

The Maple Kernel for Jupyter enables Maple to be used as the computational engine within a Jupyter session. Saved notebooks from such sessions will be in the Jupyter Notebook format.

• 

The Jupyter[CreateNotebook] command can be used to create a Jupyter notebook from a Maple expression, worksheet, or help page.

• 

The Worksheet[WorksheetToJupyter] command can be used to export a Maple worksheet or parsed worksheet object to a Jupyter notebook.

• 

The Export command can be used to export Maple expressions or parsed worksheet objects to a Jupyter notebook.

Examples

Export a simple mathematical expression to a notebook

(1)

(2)

(3)

The following example illustrates three methods of exporting worksheet content to Jupyter.

(4)

CreateNotebook generates a notebook from a worksheet file.

(5)

Worksheet:-WorksheetToJupyter exports a worksheet to a notebook.

(6)

With Import you can parse a worksheet and then export the parsed worksheet object to a Jupyter notebook.

(7)

(8)

See Also

Exporting Worksheets to Other Formats

file

Formats

Overview of the Maple Kernel for Jupyter

worksheet

 


Download Help Document