Before doing any lab, you should make sure that your Maple is upgraded with an additional software package called vec_calc. You will not be able to complete your lab assignments without this extra package.
Be sure you have logged on and the Windows desktop is showing. Open the "Applications" folder and then the "Instructor Volume" folder. Double-click on the MATH icon. You should see a brief hour-glass mouse cursor while the computer works. Then close the folders you have opened and you should now see a new U-Drive icon on your desktop with a MATH label. Double click on this icon, to open the U-Drive and you will see a Maple icon and perhaps some others. Use the Maple icon to launch Maple and you will have access to the vec_calc package.
> libname := libname, "C:\\vec_calc";
(This command should involve the actual address of the directory where
you put these files. Mind the double backslashes!)
This should install the package vec_calc.
> libname := libname, "A:\\vec_calc";
(This command should involve the actual address of the directory where
you put these files. Mind the double backslashes!)
Now the vec_calc package should be installed.
> with(vec_calc);
If you got some blue output with a long list of names separated by commas - everything is OK. If you got a purple message saying the the package does not exist - then the vec_calc package has not been installed, you have to fix the problem.
To download a file from a web browser, click on the file name with your right mouse button and do "Save Link" or "Save Target". Remember the directory on your local computer where you saved the files. Then, bring up the "Maple" from your desktop or by clicking on any .mws file icon. Within "Maple", open the file(s) you have just saved.
If you have no time to finish the exercise during one session, you may save your half-finished work on your local computer -- try to make a unique name for it, so that the file would not be accidentally erased or overwritten by other students. Still this is not 100% safe. A better solution is to always have with you a floppy disc and save your half-finished work on the floppy. Alternatively, you may save it on on your computer account via FTP.
> mcopy myfile.mws a:
where myfile.mws is the file that you want to copy.
You may check the files on your floppy with the following command:
> mdir a:
and copy a file from your floppy to your current directory:
> mcopy a:myfile.mws
Remember that every student can use his/her ASURITE account to store files! This is the same as M-drive. To access the ASURITE account via FTP or otherwise, use the domain name general.asu.edu and your ASURITE id.
> ftp general.asu.edu
Then type in your ASURITE login name and password. After successful login, to save a file on the remote computer, use the command
> put myfile.mws
To download a file from the remote computer, use
> get myfile.mws
To check the list of files on the remote computer, use
> ls
Every worksheet file should begin with four commands: restart; with(vec_calc); with(linalg); with(plots); The first command clears the memory. The other three commands allow access to the vec_calc package and other necessary packages.