Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 665 Bytes

readme.md

File metadata and controls

18 lines (11 loc) · 665 Bytes

yacas

A mavenized and cleaned-up version of the java port of the yaCAS computer algebra system, version 1.3.6 (http://yacas.sourceforge.net/homepage.html)

This project is published under the GNU GPL v2 License, as the work it is derived from.

Build Status Coverage Status

Sample usage :

    YacasInterpreter yacas = new YacasInterpreter();
    System.out.println(yacas.Evaluate("Taylor(x,0,5) Sin(x)")); // prints x-(x^3/6)+(x^5/120)