DMelt:Symbolic/2 Jasymca

From HandWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Member

Using the Jasymca engine

You can call "Jasymca" engine within Java or Jython programs as:

>>> from jhplot.math import *
>>> j=Symbolic("jasymca") # this sets the engine to "jasymca"


The calculations can be performed exactly as in the SymbolicShell, but using "eval()" function.

>>> s="syms x; trigrat(sin(x)^2+cos(x)^2)"
>>> j.eval(s)

Read how to use Jasymca engine: JMathLabTutorial:Start