<HTML><HEAD></HEAD><BODY><font face="Courier New" size=2>Hi,<BR><BR>i have written an API for linear algebra 
operations in Java that provides the following:<BR><BR>Vector2D and Vector3D 
operations<BR>Matrix operations<BR>Complex Numbers operations<BR><BR><BR>You can 
use LinAlg classes straightforward:<BR><BR>Vector2D x = new Vector2D(1, 3); 
//create a 2D Vector with x and y components<BR>Vectro2D y = new Vector2D(2, 3); 
//create another Vector<BR><BR>x.add(y); //add y to x per component, that is x.x 
+ y.x, x.y + y.y<BR>x.scalarMul(2); //scalar mulitply vector x by 
2<BR> <BR>I have had some discussions on this with Jeff Dinkins and Tom 
Marble. <BR>I have started providing a library for LinAlg you can download from 
my private homepage:<BR><BR><A 
href="http://www.alexanderschunk.de/javaen.htm">http://www.alexanderschunk.de/javaen.htm</A><BR><BR>I 
know there is currently lot of work on Mercurial and some restructuring going of 
OpenJDK on but you can use the .jar file or sourc bundle provided above as a 
first "preview". <BR><BR>I post this here to get some feedback and futher 
opinions on this.<BR><BR>I keep working on it so stay tune for updates.<BR><BR>- 
Alex<BR></font></BODY></HTML>