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_()))
2 | No.2 Revision |
The library behind symbolic expressions is (a variant of) a fork of ginac that has been incorporated into Sage source code. Expressions can be turned into Sympy with the ginac/pynac
. _sympy_
method:
e = pi
print(type(e))
print(type(e._sympy_()))
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_()))
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_()))
5 | No.5 Revision |
6 | No.6 Revision |
7 | No.7 Revision |
8 | No.8 Revision |