<li>  <b> Matlab Information </b><br>
We will use Matlab for most of the computing that we do in this course.
Matlab is by far the best environment for experimentation in numerical
computing. Although by itself it is not the most efficient choice 
for large-scale computing, it can be used to call compiled C and Fortran 
routines and experiment with the results.  Matlab is a product of 
<a HREF="http://www.mathworks.com/"> The Mathworks </a><br>
You can order your own copy of
<a href="http://www.mathworks.com/products/studentversion/"> 
Matlab for $99 (students only) </a>
or you can use Matlab on the Courant Sparcstation network (dial in from
home using a PPP connection.) <br><br>
Try out <a HREF="http://spicerack.sr.unh.edu/~mathadm/tutorial/software/matlab/">
A Free Matlab Online Tutorial </a> or 
<a HREF="http://www.math.mtu.edu/~msgocken/intro/intro.html">
Another Tuturial </a>
or look for others by a web
search. <br>
<a HREF=documentation.html> Local Matlab Documentation </a> <br>
<a HREF=primer3rd.ps> An outdated but still useful 
Introductory Matlab Primer (3rd and last edition, postscript file) </a> <br>
There are many books on Matlab, but probably the best is the brand new
<a HREF="http://www.siam.org/books/ot75"> Matlab Guide, by Higham and Higham</a><br><br>

<li>  <b> C Information </b><br>
C is the lingua franca of computing.
You will learn how to call the BLAS from C and how to call 
C routines from Matlab using the MEX interface.  
Even if you are not a C programmer, 
this is a good time to learn a little C.  
a HREF="programs/info.html"> More information</a>.  <br><br>

<li>  <b> Fortran Information </b><br>
Fortran is traditionally the language of numerical computing and is no
longer the dinosaur it used to be.  It's still widely used in scientific
applications.  Fortran 90 
supports vector operations and dynamic allocation and looks a lot like Matlab.
But the updated versions of Fortran 77 are fine for most purposes,

especially when using the BLAS.  Fortran routines can be called from Matlab
using the MEX interface.  <a HREF="programs/info.html"> More information</a>.  
You don't need to use Fortran in this course, but it's an alternative
to using C.
<br><br>

<li>  <b> Java Information </b><br>
Java is becoming a popular choice for numerical computing, but the strict
language requirements make it difficult to get good performance.
See <a href="http://www.javagrande.org"> Java Numerics </a> for more information.
Java methods can be called directly from Matlab, without the complications
of the MEX interface, but the Java interface is still under development
while the MEX interface has stabilized and is well documented.
You don't need to use Java in this course, but it's an alternative
to using C.
<br><br>


