| package index | maple.ind | 40 KB |
| package library | maple.lib | 27 KB |
| package help | maple.hdb | 313 KB | package report | maple.rep | 1 KB |
| Windows: | C:\Program Files\Maple 10\vec_calc |
| Unix/Linux: | /usr/local/Maple10/vec_calc |
| Macintosh OSX: | /Applications/Maple 10.app/Contents/MacOS/vec_calc |
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 vec_calc 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 10/lib/vec_calc";
If you saved them on a floppy or 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 vec_calc package along with three other required packages:
> with(plots): with(student): with(linalg): with(vec_calc);
Finally, the third (optional) command defines many abbreviations for the vec_calc commands:
> vc_aliases;
To get help on any command, execute
> ?vec_calc
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 |