Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The library behind symbolic expressions is (a variant of) ginac/pynac. Expressions can be turned into Sympy with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 2
No.2 Revision

The library behind symbolic expressions is (a variant of) ginac/pynac. a fork of ginac that has been incorporated into Sage source code. Expressions can be turned into Sympy with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 3
No.3 Revision

The library behind symbolic expressions is a fork of ginacginac/pynac that has been incorporated into Sage source code. Expressions can be turned into Sympy with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 4
No.4 Revision

The library behind symbolic expressions is a fork of ginac/pynacginac that has been incorporated into Sage source code. code under the name pynac. Expressions can be turned into Sympy with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 5
No.5 Revision

The library behind symbolic expressions is a fork of ginac that has been wan named pynac and was then incorporated into Sage source code under the name pynac. code. Expressions can be turned into Sympy with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 6
No.6 Revision

The library behind symbolic expressions is a fork of ginac that wan named pynac and was then incorporated into Sage source code. Expressions can be turned into Sympy objects with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 7
No.7 Revision

The library behind symbolic expressions is a fork of ginac that wan was named pynac and was then incorporated into Sage source code. Expressions can be turned into Sympy objects with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))
click to hide/show revision 8
No.8 Revision

The library behind symbolic expressions is a fork of ginac that was named pynac and was then incorporated into Sage source code. code directly. Expressions can be turned into Sympy objects with the _sympy_ method:

e = pi
print(type(e))
print(type(e._sympy_()))