bertini.operators

The symbolic math vocabulary, gathered for from bertini.operators import *.

These are the elementary functions (sin, cos, …) and constants (E, Pi, I) used to build symbolic systems on Variables. They also live at the top level (bertini.sin, bertini.Pi, …); this module exists only so you can pull the math vocabulary into your namespace without importing the rest of bertini:

from bertini.operators import *
f = sin(x) + Pi*y - E

These are the symbolic operators; the numeric elementary functions (acting on multiprecision numbers rather than expression nodes) live in bertini.multiprec.

bertini.operators.sin((AbstractNode)arg1) AbstractNode :

the symbolic sine operator

bertini.operators.cos((AbstractNode)arg1) AbstractNode :

the symbolic cosine operator

bertini.operators.tan((AbstractNode)arg1) AbstractNode :

the symbolic tangent operator

bertini.operators.asin((AbstractNode)arg1) AbstractNode :

the symbolic arcsine operator

bertini.operators.acos((AbstractNode)arg1) AbstractNode :

the symbolic arccosine operator

bertini.operators.atan((AbstractNode)arg1) AbstractNode :

the symbolic arctangent operator

bertini.operators.exp((AbstractNode)arg1) AbstractNode :

the symbolic exponential operator

bertini.operators.log((AbstractNode)arg1) AbstractNode :

the symbolic natural log operator

bertini.operators.sqrt(x)[source]

Symbolic square-root operator.