| package index | maple.ind | 40 KB |
| package library | maple.lib | 43 KB |
| package help | maple.hdb | 546 KB |
| Windows: | C:\Program Files\Maple 7\veccalc |
| Unix/Linux: | /usr/local/Maple7/veccalc |
The first command tells Maple where the package files are located. After starting Maple, execute the command
> libname := libname, "yourdirectorypath";
where yourdirectorypath is the full path to the directory where you saved the VecCalc files using / between directories. For example, on Windows, if you saved them in the recommended directory, then the command will be
> libname := libname, "C:/Program Files/Maple 7/veccalc";
If you saved them on a floppy, then the command will be
> libname := libname, "A:/";
and if you saved them in the directory D:\mypath\mydir then the command will be
> libname := libname, "D:/mypath/mydir";
Note The path is enclosed in double quotes (").
The second command reads in the package commands:
> with(VecCalc);
Finally, the third (optional) command defines many abbreviations for the VecCalc commands:
> VCalias;
To get help on any command, execute
> ?VecCalc
and follow the hyperlinks.
| File Name | Location | |
| Windows: | maple.ini | C:\Program Files\Maple 7\lib |
| Unix/Linux: | .mapleinit | your home directory |