Hello

I've just released this refactored MathEclipse parser package as a GWT
1.5 module:
http://sourceforge.net/project/showfiles.php?group_id=67067&package_id=206641&release_id=624702

The MathEclipse parser package could be used to evaluate math
expressions in double and complex numeric mode.

>From the Changelog:
* refactored the parser package names to be directly usable as a GWT
module.
* all classes below the package "org.matheclipse.parser.client" are
now compilable from Java to JavaScript by the GWT compiler.
* in your *.gwt.xml module you have to insert the line:
  <inherits name="org.matheclipse.parser.Parser"/>
  and to add the meparser-0.0.6.jar on your classpath to use it with
GWT.
  For more information about the GWT module mechanism see:
  http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.De...
* Example for using the double evaluator:
  DoubleEvaluator engine = new DoubleEvaluator();
  double d = engine.evaluate(str);
* Example for using the complex number evaluator:
  ComplexEvaluator engine = new ComplexEvaluator();
  Complex c = engine.evaluate(str);
  String complexStr = ComplexEvaluator.toString(c);
* for more examples please see the JUnit tests in the Eclipse
project:
  org.matheclipse.parser.test
  
http://matheclipse.cvs.sourceforge.net/matheclipse/org.matheclipse.parser.test/src/org/matheclipse/parser/test/

Your feedback for improving MathEclipse is appreciated. See the forum
at:
http://groups.google.de/group/matheclipse

--
Axel Kramer
http://www.matheclipse.org
WikiBlog: http://www.groovy-news.org/e/page/axelclk
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to