如何在 Maple 中加载包?

How to load a package in Maple?

我想使用一个叫做 "ESC" 椭圆曲面计算器的包,可以用 Maple 上传。

创建者的说明是:

Save as a text file with character encoding ISO-8859-1 (ISO Latin 1) and load within Maple using "read" command).

我在上传到 Maple 并使用此编码保存时遇到问题。谁能说出确切的上传命令以及详细信息以及如何使用这种编码保存文本?

这里是包页面:http://c-faculty.chuo-u.ac.jp/~kuwata/2012-13/Maple_resources/ESC.mpl

我使用 Windows 8.1 和 Maple 18。谢谢!

在网页上,右键单击源代码文件,然后单击另存为文本文件。 之后,打开maple worksheet读取文件ESC.mpl.txt,像这样

restart:
read("C:/tcdata/ESC.mpl.txt") # I have save the file in a folder named `tcdata` in drive C.

一旦文件在 maple 中 loaded/read,你就可以做任何你想做的事了。我尝试了这些,以检查源代码是否有效。

ESC();

elliptic_surface(1,1,1,1,1);

显然,源文件已被读取并且工作正常。