Program libraries
-----------------

yacas.jar		The computer-algebra-system Yacas

bsh.jar			BeanShell, the Java interpreter

jasymca.jar		Jasymca, a numerical and computer-algebra-system with syntax 
			similar to Octave

jlapack.jar		Numerical library optionally* used by Jasymca.
			*see Jasymca manual

jmathplot.jar		Optional plotting library, can be accessed by BeanShell.


Init scripts (you may change them)
------------

init.ys			Init script called when using the command mavscript-yacas.
			Defines the function nf():
			nf(1/3, 2) --> 0.33
			nf(1/3, 4) --> 0.3333
			nf(1/3)    --> 0.33333333333333333333
			Defines the numerical assignment operator :~
			A :~ Pi*8^2 --> 201.0619298297
			Defines the function nSolve(). (Might be removed in future versions.)
			expr := x^2-2
			nSolve(expr, x, 1.0) --> 1.4142135624
			Define convenience functions for Drawj2d use within yacas:
			SetVar(), Att(), Drawj2d()


init.bsh		Init script called when using the command mavscript-beanshell
			Defines the functions max(), min() and nf()
			max({1,4,8,3.3}) --> 8
			min({1,4,8,3.3}) --> 1
			nf(1./3., 2) --> 0.33
			nf(1./3., 4) --> 0.3333
			Defines function toPNG() for jmathplot.


init.m			Init script called when using the command  
			mavscript -jasymca --init MAVSCRIPTPATH/lib/init.m

