| package index | VecCalc.ind | 40 KB |
| package library | VecCalc.lib | 43 KB |
| package help | VecCalc.hdb | 546 KB |
| Windows: | C:\Program Files\Maple 10\lib |
| Unix/Linux: | /usr/local/Maple10/lib |
| Macintosh OSX: | /Applications/Maple 10.app/Contents/MacOS/lib |
The first command tells Maple where the package files are located. If you saved the files in the recommended location listed above, then this command is unnecessary. Otherwise, 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 on a floppy or a USB drive (with drive letter F), then the command will be
> libname := libname, "F:/";
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 10\lib |
| Unix/Linux: | .mapleinit | your home directory |
| Macintosh OSX: | .mapleinit | your home directory |